Struct rill_protocol::pathfinder::Pathfinder[][src]

pub struct Pathfinder<T> { /* fields omitted */ }

Universal storage with EntryId hierarchy.

Implementations

impl<T> Pathfinder<T>[src]

pub fn new() -> Self[src]

Methods from Deref<Target = Record<T>>

pub fn dig(&mut self, path: Path) -> &mut Self[src]

Creates nodes for the provided Path.

It returns empty record if value is not exists and you have to use set_link method to assign a value to it.

pub fn discover(&self, path: &Path) -> Discovered<'_, T>[src]

Tries to find a Record for the Path, but it it’s not exists than it returned the last record in a chain and the remained (unprocessed) Path.

pub fn remove(&mut self, path: &Path) -> Option<Self>[src]

pub fn find(&self, path: &Path) -> Option<&Self>[src]

Returns the Record for the Path or None if the Record not exists for the path.

pub fn find_mut(&mut self, path: &Path) -> Option<&mut Self>[src]

pub fn list(&self) -> impl Iterator<Item = (EntryId, Option<&T>)>[src]

Trait Implementations

impl<T: Debug> Debug for Pathfinder<T>[src]

impl<T> Default for Pathfinder<T>[src]

impl<T> Deref for Pathfinder<T>[src]

type Target = Record<T>

The resulting type after dereferencing.

impl<T> DerefMut for Pathfinder<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Pathfinder<T> where
    T: RefUnwindSafe

impl<T> Send for Pathfinder<T> where
    T: Send

impl<T> Sync for Pathfinder<T> where
    T: Sync

impl<T> Unpin for Pathfinder<T> where
    T: Unpin

impl<T> UnwindSafe for Pathfinder<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.