Skip to main content

ProbeNotify

Trait ProbeNotify 

Source
pub trait ProbeNotify<'scope, T: Timestamp> {
    // Required method
    fn probe_notify_with(self, handles: Vec<Handle<T>>) -> Self;
}
Expand description

Monitors progress at a Stream.

Required Methods§

Source

fn probe_notify_with(self, handles: Vec<Handle<T>>) -> Self

Inserts a collection of progress probe in a stream.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'scope, T, C> ProbeNotify<'scope, T> for Stream<'scope, T, C>
where T: Timestamp, C: Container + Clone + 'static,

Source§

fn probe_notify_with(self, handles: Vec<Handle<T>>) -> Self

Implementors§