Skip to main content

TreeModelRef

Struct TreeModelRef 

Source
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>

Source

pub const fn new(roots: &'a [Id], children: C, revision: TreeRevision) -> Self

Creates an adapter. Tree validity remains an invariant of the source storage.

Source

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>
where Id: Copy + Eq + Hash, C: Fn(Id) -> TreeChildren<'a, Id>,

Source§

type Id = Id

The node identifier type.
Source§

fn roots(&self) -> impl Iterator<Item = Self::Id> + '_

Returns forest roots in deterministic order.
Source§

fn children(&self, id: Self::Id) -> TreeChildren<'_, Self::Id>

Returns the node’s child state and loaded children.
Source§

fn revision(&self) -> TreeRevision

Returns the revision of the model structure and display data.
Source§

fn size_hint(&self) -> usize

Returns an approximate number of available nodes.

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>

§

impl<'a, Id, C> Send for TreeModelRef<'a, Id, C>
where C: Send, Id: Sync,

§

impl<'a, Id, C> Sync for TreeModelRef<'a, Id, C>
where C: Sync, Id: Sync,

§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.