pub struct TreeModelRef<'a, Id, C> { /* private fields */ }Expand description
A zero-copy adapter over roots and a child accessor for arbitrary storage.
Implementations§
Source§impl<'a, Id, C> TreeModelRef<'a, Id, C>
impl<'a, Id, C> TreeModelRef<'a, Id, C>
Sourcepub const fn new(roots: &'a [Id], children: C, revision: TreeRevision) -> Self
pub const fn new(roots: &'a [Id], children: C, revision: TreeRevision) -> Self
Creates an adapter. Tree validity remains an invariant of the source storage.
Sourcepub const fn with_size_hint(self, size_hint: usize) -> Self
pub const fn with_size_hint(self, size_hint: usize) -> Self
Sets an approximate node count for cache reservation.
Trait Implementations§
Source§impl<'a, Id, C> TreeModel for TreeModelRef<'a, Id, C>
impl<'a, Id, C> TreeModel for TreeModelRef<'a, Id, C>
Source§fn roots(&self) -> impl Iterator<Item = Self::Id> + '_
fn roots(&self) -> impl Iterator<Item = Self::Id> + '_
Returns forest roots in deterministic order.
Source§fn children(&self, id: Self::Id) -> TreeChildren<'_, Self::Id>
fn children(&self, id: Self::Id) -> TreeChildren<'_, Self::Id>
Returns the node’s child state and loaded children.
Source§fn revision(&self) -> TreeRevision
fn revision(&self) -> TreeRevision
Returns the revision of the model structure and display data.
Auto Trait Implementations§
impl<'a, Id, C> Freeze for TreeModelRef<'a, Id, C>where
C: Freeze,
impl<'a, Id, C> RefUnwindSafe for TreeModelRef<'a, Id, C>where
C: RefUnwindSafe,
Id: RefUnwindSafe,
impl<'a, Id, C> Send for TreeModelRef<'a, Id, C>
impl<'a, Id, C> Sync for TreeModelRef<'a, Id, C>
impl<'a, Id, C> Unpin for TreeModelRef<'a, Id, C>where
C: Unpin,
impl<'a, Id, C> UnsafeUnpin for TreeModelRef<'a, Id, C>where
C: UnsafeUnpin,
impl<'a, Id, C> UnwindSafe for TreeModelRef<'a, Id, C>where
C: UnwindSafe,
Id: RefUnwindSafe,
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
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