pub enum ActorSendError {
FailedToDeliver,
FailedToGetResponse,
}Variants§
Trait Implementations§
Source§impl Clone for ActorSendError
impl Clone for ActorSendError
Source§fn clone(&self) -> ActorSendError
fn clone(&self) -> ActorSendError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActorSendError
impl Debug for ActorSendError
Source§impl Display for ActorSendError
impl Display for ActorSendError
Source§impl Error for ActorSendError
impl Error for ActorSendError
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()
Source§impl PartialEq for ActorSendError
impl PartialEq for ActorSendError
impl Copy for ActorSendError
impl Eq for ActorSendError
impl StructuralPartialEq for ActorSendError
Auto Trait Implementations§
impl Freeze for ActorSendError
impl RefUnwindSafe for ActorSendError
impl Send for ActorSendError
impl Sync for ActorSendError
impl Unpin for ActorSendError
impl UnwindSafe for ActorSendError
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