pub struct ActorPath(/* private fields */);Expand description
A hierarchical actor path, e.g. /engine:abc/user/orders/processor-1.
Paths must start with /, must not end with / (except for root /),
and each segment may only contain ASCII alphanumerics plus -, _, :,
and ..
Implementations§
Trait Implementations§
Source§impl Ord for ActorPath
impl Ord for ActorPath
Source§impl PartialOrd for ActorPath
impl PartialOrd for ActorPath
impl Eq for ActorPath
impl StructuralPartialEq for ActorPath
Auto Trait Implementations§
impl Freeze for ActorPath
impl RefUnwindSafe for ActorPath
impl Send for ActorPath
impl Sync for ActorPath
impl Unpin for ActorPath
impl UnsafeUnpin for ActorPath
impl UnwindSafe for ActorPath
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more