pub enum CreateError {
Panicked,
System,
InvalidName(String),
AlreadyExists(ActorPath),
}Expand description
Error type when an actor fails to start during actor_of.
Variants§
Trait Implementations§
Source§impl Debug for CreateError
impl Debug for CreateError
Auto Trait Implementations§
impl Freeze for CreateError
impl RefUnwindSafe for CreateError
impl Send for CreateError
impl Sync for CreateError
impl Unpin for CreateError
impl UnwindSafe for CreateError
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