Expand description
Utilities around ObservableVector
.
Structs§
- A wrapper around
VectorSubscriber
with a differentVectorObserver
impl. - An empty stream with an item type of
usize
. - A
VectorDiff
stream adapter that presents a filtered view of the underlyingObservableVector
s items. - A
VectorDiff
stream adapter that presents a filter+mapped view of the underlyingObservableVector
s items. - A
VectorDiff
stream adapter that presents a limited view of the underlyingObservableVector
s items. - A
VectorDiff
stream adapter that presents a sorted view of the underlyingObservableVector
items. - A
VectorDiff
stream adapter that presents a sorted view of the underlyingObservableVector
items. - A
VectorDiff
stream adapter that presents a sorted view of the underlyingObservableVector
items.
Traits§
- Abstraction over stream items that the adapters in this module can deal with.
- Abstraction over types that hold both a
Vector
and a stream ofVectorDiff
updates. - Convenience methods for
VectorObserver
s. - Extension trait for
VectorSubscriber
.
Type Aliases§
- Type alias for extracting the element type from a stream of
VectorDiffContainer
s. - Type alias for extracting the stream item type after the element type was mapped to the given type
U
, from a stream ofVectorDiffContainer
s.