pub fn try_flatten_touched<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::touched_objects which can be chained onto watcher. Add use kube::runtime::WatchStreamExt; and call stream.touched_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_touched.