pub enum SysChannelError {
NoActor,
InvalidMessageType,
}Expand description
An failure to open a channel to an actor (see System::channel::<Message>(&self, ActorID))
Variants§
Trait Implementations§
Source§impl Debug for SysChannelError
impl Debug for SysChannelError
Source§impl Display for SysChannelError
impl Display for SysChannelError
Source§impl Error for SysChannelError
impl Error for SysChannelError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SysChannelError
impl RefUnwindSafe for SysChannelError
impl Send for SysChannelError
impl Sync for SysChannelError
impl Unpin for SysChannelError
impl UnwindSafe for SysChannelError
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