pub struct CondowError { /* private fields */ }Expand description
The error type used by condow
Further information is encoded with CondowErrorKind.
Implementations§
Source§impl CondowError
impl CondowError
pub fn new<T>(msg: T, kind: CondowErrorKind) -> CondowError
pub fn new_invalid_range<T>(msg: T) -> CondowError
pub fn new_not_found<T>(msg: T) -> CondowError
pub fn new_access_denied<T>(msg: T) -> CondowError
pub fn new_remote<T>(msg: T) -> CondowError
pub fn new_io<T>(msg: T) -> CondowError
pub fn new_other<T>(msg: T) -> CondowError
pub fn with_source<E>(self, err: E) -> CondowError
pub fn msg(&self) -> &str
pub fn kind(&self) -> CondowErrorKind
pub fn is_retryable(&self) -> bool
Trait Implementations§
Source§impl Debug for CondowError
impl Debug for CondowError
Source§impl Display for CondowError
impl Display for CondowError
Source§impl Error for CondowError
impl Error for CondowError
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 From<CondowErrorKind> for CondowError
impl From<CondowErrorKind> for CondowError
Source§fn from(error_kind: CondowErrorKind) -> CondowError
fn from(error_kind: CondowErrorKind) -> CondowError
Converts to this type from the input type.
Source§impl From<Error> for CondowError
impl From<Error> for CondowError
Source§fn from(io_err: Error) -> CondowError
fn from(io_err: Error) -> CondowError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CondowError
impl RefUnwindSafe for CondowError
impl Send for CondowError
impl Sync for CondowError
impl Unpin for CondowError
impl UnwindSafe for CondowError
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