eyeball_im_util::vector

Trait VectorObserver

Source
pub trait VectorObserver<T>: Sized { }
Expand description

Abstraction over types that hold both a Vector and a stream of VectorDiff updates.

See VectorObserverExt for operations available to implementers.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T, S> VectorObserver<T> for (Vector<T>, S)

Source§

impl<T: Clone + 'static> VectorObserver<T> for VectorSubscriber<T>

Implementors§

Source§

impl<S, L> VectorObserver<<<S as Stream>::Item as VectorDiffContainer>::Element> for Limit<S, L>
where S: Stream, S::Item: VectorDiffContainer, L: Stream<Item = usize>,

Source§

impl<T: Clone + 'static> VectorObserver<T> for BatchedVectorSubscriber<T>