Function kube_runtime::utils::try_flatten_applied
source · [−]pub fn try_flatten_applied<K, S: TryStream<Ok = Event<K>>>(
stream: S
) -> impl Stream<Item = Result<K, S::Error>>
👎Deprecated since 0.72.0:
fn replaced with the WatchStreamExt::applied_objects which can be chained onto watcher. Add use kube::runtime::WatchStreamExt;
and call stream.applied_objects()
instead. This function will be removed in 0.75.0.
Expand description
Flattens each item in the list following the rules of watcher::Event::into_iter_applied
.