Trait xmz_server::prelude::Error 1.0.0[−][src]
pub trait Error: Debug + Display { fn description(&self) -> &str { ... } fn cause(&self) -> Option<&Error> { ... } }
Error
is a trait representing the basic expectations for error values,
i.e. values of type E
in Result<T, E>
. Errors must describe
themselves through the Display
and [Debug
] traits, and may provide
cause chain information:
The cause
method is generally used when errors cross "abstraction
boundaries", i.e. when a one module must report an error that is "caused"
by an error from a lower-level module. This setup makes it possible for the
high-level module to provide its own errors that do not commit to any
particular implementation, but also reveal some of its implementation for
debugging via cause
chains.
Provided Methods
fn description(&self) -> &str
This method is soft-deprecated.
Although using it won’t cause compilation warning,
new code should use Display
instead
and new impl
s can omit it.
To obtain error description as a string, use to_string()
.
Examples
match "xc".parse::<u32>() { Err(e) => { // Print `e` itself, not `e.description()`. println!("Error: {}", e); } _ => println!("No error"), }
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any.
Examples
use std::error::Error; use std::fmt; #[derive(Debug)] struct SuperError { side: SuperErrorSideKick, } impl fmt::Display for SuperError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "SuperError is here!") } } impl Error for SuperError { fn description(&self) -> &str { "I'm the superhero of errors" } fn cause(&self) -> Option<&Error> { Some(&self.side) } } #[derive(Debug)] struct SuperErrorSideKick; impl fmt::Display for SuperErrorSideKick { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "SuperErrorSideKick is here!") } } impl Error for SuperErrorSideKick { fn description(&self) -> &str { "I'm SuperError side kick" } } fn get_super_error() -> Result<(), SuperError> { Err(SuperError { side: SuperErrorSideKick }) } fn main() { match get_super_error() { Err(e) => { println!("Error: {}", e.description()); println!("Caused by: {}", e.cause().unwrap()); } _ => println!("No error"), } }
Methods
impl Error + 'static
[src]
impl Error + 'static
pub fn is<T>(&self) -> bool where
T: 'static + Error,
1.3.0[src]
pub fn is<T>(&self) -> bool where
T: 'static + Error,
Returns true if the boxed type is the same as T
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: 'static + Error,
1.3.0[src]
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: 'static + Error,
Returns some reference to the boxed value if it is of type T
, or
None
if it isn't.
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: 'static + Error,
1.3.0[src]
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: 'static + Error,
Returns some mutable reference to the boxed value if it is of type T
, or
None
if it isn't.
impl Error + 'static + Send
[src]
impl Error + 'static + Send
pub fn is<T>(&self) -> bool where
T: 'static + Error,
1.3.0[src]
pub fn is<T>(&self) -> bool where
T: 'static + Error,
Forwards to the method defined on the type Any
.
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: 'static + Error,
1.3.0[src]
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: 'static + Error,
Forwards to the method defined on the type Any
.
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: 'static + Error,
1.3.0[src]
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: 'static + Error,
Forwards to the method defined on the type Any
.
impl Error + 'static + Sync + Send
[src]
impl Error + 'static + Sync + Send
pub fn is<T>(&self) -> bool where
T: 'static + Error,
1.3.0[src]
pub fn is<T>(&self) -> bool where
T: 'static + Error,
Forwards to the method defined on the type Any
.
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: 'static + Error,
1.3.0[src]
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: 'static + Error,
Forwards to the method defined on the type Any
.
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: 'static + Error,
1.3.0[src]
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: 'static + Error,
Forwards to the method defined on the type Any
.
impl Error + 'static
[src]
impl Error + 'static
pub fn downcast<T>(
self: Box<Error + 'static>
) -> Result<Box<T>, Box<Error + 'static>> where
T: 'static + Error,
1.3.0[src]
pub fn downcast<T>(
self: Box<Error + 'static>
) -> Result<Box<T>, Box<Error + 'static>> where
T: 'static + Error,
Attempt to downcast the box to a concrete type.
impl Error + 'static + Send
[src]
impl Error + 'static + Send
pub fn downcast<T>(
self: Box<Error + 'static + Send>
) -> Result<Box<T>, Box<Error + 'static + Send>> where
T: 'static + Error,
1.3.0[src]
pub fn downcast<T>(
self: Box<Error + 'static + Send>
) -> Result<Box<T>, Box<Error + 'static + Send>> where
T: 'static + Error,
Attempt to downcast the box to a concrete type.
impl Error + 'static + Sync + Send
[src]
impl Error + 'static + Sync + Send
pub fn downcast<T>(
self: Box<Error + 'static + Sync + Send>
) -> Result<Box<T>, Box<Error + 'static + Sync + Send>> where
T: 'static + Error,
1.3.0[src]
pub fn downcast<T>(
self: Box<Error + 'static + Sync + Send>
) -> Result<Box<T>, Box<Error + 'static + Sync + Send>> where
T: 'static + Error,
Attempt to downcast the box to a concrete type.
Trait Implementations
impl Trait for Error + 'static + Send
[src]
impl Trait for Error + 'static + Send
impl Trait for Error + 'static + Sync
[src]
impl Trait for Error + 'static + Sync
impl Trait for Error + 'static + Sync + Send
[src]
impl Trait for Error + 'static + Sync + Send
Implementations on Foreign Types
impl Error for TryFromSliceError
[src]
impl Error for TryFromSliceError
impl Error for ParseFloatError
[src]
impl Error for ParseFloatError
impl Error for JoinPathsError
[src]
impl Error for JoinPathsError
impl<T> Error for Box<T> where
T: Error,
[src]
impl<T> Error for Box<T> where
T: Error,
impl<T> Error for TrySendError<T> where
T: Send,
[src]
impl<T> Error for TrySendError<T> where
T: Send,
impl Error for RecvError
[src]
impl Error for RecvError
impl Error for CharsError
[src]
impl Error for CharsError
impl Error for CannotReallocInPlace
[src]
impl Error for CannotReallocInPlace
impl Error for ParseBoolError
[src]
impl Error for ParseBoolError
impl Error for BorrowMutError
[src]
impl Error for BorrowMutError
impl<W> Error for IntoInnerError<W> where
W: Send + Debug,
[src]
impl<W> Error for IntoInnerError<W> where
W: Send + Debug,
impl Error for IntoStringError
[src]
impl Error for IntoStringError
impl<T> Error for PoisonError<T>
[src]
impl<T> Error for PoisonError<T>
impl Error for RecvTimeoutError
[src]
impl Error for RecvTimeoutError
impl Error for !
[src]
impl Error for !
impl Error for ParseCharError
[src]
impl Error for ParseCharError
impl Error for FromUtf8Error
[src]
impl Error for FromUtf8Error
impl Error for FromUtf16Error
[src]
impl Error for FromUtf16Error
impl Error for TryRecvError
[src]
impl Error for TryRecvError
impl Error for LayoutErr
[src]
impl Error for LayoutErr
impl Error for CharTryFromError
[src]
impl Error for CharTryFromError
impl Error for TryFromIntError
[src]
impl Error for TryFromIntError
impl Error for Error
[src]
impl Error for Error
impl Error for ParseError
[src]
impl Error for ParseError
impl Error for VarError
[src]
impl Error for VarError
impl Error for ParseIntError
[src]
impl Error for ParseIntError
impl<T> Error for TryLockError<T>
[src]
impl<T> Error for TryLockError<T>
impl Error for AddrParseError
[src]
impl Error for AddrParseError
impl Error for DecodeUtf16Error
[src]
impl Error for DecodeUtf16Error
impl Error for NulError
[src]
impl Error for NulError
impl Error for BorrowError
[src]
impl Error for BorrowError
impl<T> Error for SendError<T> where
T: Send,
[src]
impl<T> Error for SendError<T> where
T: Send,
impl Error for FromBytesWithNulError
[src]
impl Error for FromBytesWithNulError
impl Error for Utf8Error
[src]
impl Error for Utf8Error
impl Error for AllocErr
[src]
impl Error for AllocErr
impl Error for SystemTimeError
[src]
impl Error for SystemTimeError
impl Error for StripPrefixError
[src]
impl Error for StripPrefixError
impl Error for Error
[src]
impl Error for Error
impl Error for Error
[src]
impl Error for Error
impl Error for DatetimeParseError
[src]
impl Error for DatetimeParseError
impl Error for Error
[src]
impl Error for Error
impl Error for Error
[src]
impl Error for Error
impl Error for SetLoggerError
[src]
impl Error for SetLoggerError
impl Error for ParseLevelError
[src]
impl Error for ParseLevelError
impl Error for ErrorKind
[src]
impl Error for ErrorKind
impl Error for TimerError
[src]
impl Error for TimerError
impl Error for LaunchError
[src]
impl Error for LaunchError
impl Error for ConfigError
[src]
impl Error for ConfigError
impl Error for SetLoggerError
[src]
impl Error for SetLoggerError
impl Error for ShutdownLoggerError
[src]
impl Error for ShutdownLoggerError
impl Error for Error
[src]
impl Error for Error
impl Error for DecodeError
[src]
impl Error for DecodeError
impl Error for OutOfRangeError
[src]
impl Error for OutOfRangeError
impl Error for ParseError
[src]
impl Error for ParseError
impl Error for ParseError
[src]
impl Error for ParseError
impl Error for Error
[src]
impl Error for Error
impl Error for Error
[src]
impl Error for Error
impl Error for ParseError
[src]
impl Error for ParseError
impl Error for Unspecified
[src]
impl Error for Unspecified
impl Error for DecodeError
[src]
impl Error for DecodeError
impl Error for Error
[src]
impl Error for Error
Implementors
impl Error for ServerError
impl Error for MesszelleError
impl Error for OutputError
impl Error for xmz_server::prelude::fmt::Error