Struct rill_protocol::pathfinder::Record [−][src]
Implementations
impl<T> Record<T>[src]
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]
pub fn set_link(&mut self, link: T) -> Option<T>[src]
pub fn reset_link(&mut self)[src]
pub fn get_link(&self) -> Option<&T>[src]
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Record<T> where
T: RefUnwindSafe, [src]
T: RefUnwindSafe,
impl<T> Send for Record<T> where
T: Send, [src]
T: Send,
impl<T> Sync for Record<T> where
T: Sync, [src]
T: Sync,
impl<T> Unpin for Record<T> where
T: Unpin, [src]
T: Unpin,
impl<T> UnwindSafe for Record<T> where
T: UnwindSafe, [src]
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,