pub enum BinToDecError {
ParseError(ParseIntError),
}Variants§
ParseError(ParseIntError)
Trait Implementations§
Source§impl Debug for BinToDecError
impl Debug for BinToDecError
Source§impl Display for BinToDecError
impl Display for BinToDecError
Source§impl Error for BinToDecError
impl Error for BinToDecError
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 From<BinToDecError> for TransformError
impl From<BinToDecError> for TransformError
Source§fn from(err: BinToDecError) -> Self
fn from(err: BinToDecError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BinToDecError
impl RefUnwindSafe for BinToDecError
impl Send for BinToDecError
impl Sync for BinToDecError
impl Unpin for BinToDecError
impl UnsafeUnpin for BinToDecError
impl UnwindSafe for BinToDecError
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