Struct matrix_sdk_base::linked_chunk::AsVector
source · pub struct AsVector<Item, Gap> { /* private fields */ }
Expand description
A type that transforms a Vec<Update<Item, Gap>>
(given by
ObservableUpdates::take
) into a
Vec<VectorDiff<Item>>
(this type). Basically, it helps to consume a
LinkedChunk<CAP, Item, Gap>
as if it was an
eyeball_im::ObservableVector<Item>
.
Implementations§
source§impl<Item, Gap> AsVector<Item, Gap>
impl<Item, Gap> AsVector<Item, Gap>
sourcepub fn take(&mut self) -> Vec<VectorDiff<Item>>where
Item: Clone,
pub fn take(&mut self) -> Vec<VectorDiff<Item>>where
Item: Clone,
Take the new updates as VectorDiff
.
It returns an empty Vec
if there is no new VectorDiff
for the
moment.
Trait Implementations§
Auto Trait Implementations§
impl<Item, Gap> Freeze for AsVector<Item, Gap>
impl<Item, Gap> RefUnwindSafe for AsVector<Item, Gap>
impl<Item, Gap> Send for AsVector<Item, Gap>
impl<Item, Gap> Sync for AsVector<Item, Gap>
impl<Item, Gap> Unpin for AsVector<Item, Gap>
impl<Item, Gap> UnwindSafe for AsVector<Item, Gap>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CompatExt for T
impl<T> CompatExt for T
source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more