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

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

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]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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

fn default() -> Self[src]

Returns the “default value” for a type. Read more

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

type Target = Record<T>

The resulting type after dereferencing.

fn deref(&self) -> &Self::Target[src]

Dereferences the value.

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

fn deref_mut(&mut self) -> &mut Self::Target[src]

Mutably dereferences the value.

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

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

Performs the conversion.

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.

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

Performs the conversion.