Struct tiny_tokio_actor::ActorPath [−][src]
pub struct ActorPath(_);
Unique identifier for running actors.
Implementations
impl ActorPath[src]
impl ActorPath[src]pub fn is_empty(&self) -> bool[src]
pub fn root(&self) -> Self[src]
pub fn parent(&self) -> Self[src]
pub fn key(&self) -> String[src]
pub fn level(&self) -> usize[src]
pub fn at_level(&self, level: usize) -> Self[src]
pub fn is_ancestor_of(&self, other: &ActorPath) -> bool[src]
pub fn is_descendant_of(&self, other: &ActorPath) -> bool[src]
pub fn is_parent_of(&self, other: &ActorPath) -> bool[src]
pub fn is_child_of(&self, other: &ActorPath) -> bool[src]
pub fn is_root(&self) -> bool[src]
Trait Implementations
impl Ord for ActorPath[src]
impl Ord for ActorPath[src]impl PartialOrd<ActorPath> for ActorPath[src]
impl PartialOrd<ActorPath> for ActorPath[src]fn partial_cmp(&self, other: &ActorPath) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &ActorPath) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Eq for ActorPath[src]
impl StructuralEq for ActorPath[src]
impl StructuralPartialEq for ActorPath[src]
Auto Trait Implementations
impl RefUnwindSafe for ActorPath
impl Send for ActorPath
impl Sync for ActorPath
impl Unpin for ActorPath
impl UnwindSafe for ActorPath
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more