pub enum ArtilleryError {
OrphanNode(String),
Io(Error),
ClusterMessageDecode(String),
Send(String),
Receive(String),
Unexpected(String),
Decoding(String),
NumericCast(String),
}Variants§
OrphanNode(String)
Io(Error)
ClusterMessageDecode(String)
Send(String)
Receive(String)
Unexpected(String)
Decoding(String)
NumericCast(String)
Trait Implementations§
Source§impl Debug for ArtilleryError
impl Debug for ArtilleryError
Source§impl Display for ArtilleryError
impl Display for ArtilleryError
Source§impl Fail for ArtilleryError
impl Fail for ArtilleryError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreSource§impl From<Error> for ArtilleryError
impl From<Error> for ArtilleryError
Source§impl From<Error> for ArtilleryError
impl From<Error> for ArtilleryError
Source§impl From<RecvError> for ArtilleryError
impl From<RecvError> for ArtilleryError
Source§impl<T> From<SendError<T>> for ArtilleryError
impl<T> From<SendError<T>> for ArtilleryError
Source§impl From<TryFromIntError> for ArtilleryError
impl From<TryFromIntError> for ArtilleryError
Source§fn from(e: TryFromIntError) -> Self
fn from(e: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArtilleryError
impl !RefUnwindSafe for ArtilleryError
impl Send for ArtilleryError
impl Sync for ArtilleryError
impl Unpin for ArtilleryError
impl !UnwindSafe for ArtilleryError
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more