Struct rill_protocol::pathfinder::Record [−][src]
pub struct Record<T> { /* fields omitted */ }Implementations
impl<T> Record<T>[src]
impl<T> Record<T>[src]pub fn dig(&mut self, path: Path) -> &mut Self[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]
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]
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 take_link(&mut self) -> Option<T>[src]
pub fn get_link(&self) -> Option<&T>[src]
pub fn get_link_mut(&mut self) -> Option<&mut T>[src]
pub fn has_link(&self) -> bool[src]
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Record<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Record<T> where
T: Send,
T: Send,
impl<T> Sync for Record<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Record<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Record<T> where
T: UnwindSafe,
T: UnwindSafe,