pub enum CellError {
Generic(GenericError),
FromUtf8(FromUtf8Error),
ParseInt(ParseIntError),
}
Variants§
Implementations§
Trait Implementations§
Source§impl Error for CellError
impl Error for CellError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§impl From<FromUtf8Error> for CellError
impl From<FromUtf8Error> for CellError
Source§fn from(err: FromUtf8Error) -> CellError
fn from(err: FromUtf8Error) -> CellError
Converts to this type from the input type.
Source§impl From<ParseIntError> for CellError
impl From<ParseIntError> for CellError
Source§fn from(err: ParseIntError) -> CellError
fn from(err: ParseIntError) -> CellError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CellError
impl RefUnwindSafe for CellError
impl Send for CellError
impl Sync for CellError
impl Unpin for CellError
impl UnwindSafe for CellError
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