pub enum BaseConversionError {
InvalidBase,
InvalidDigit,
InvalidInput,
}Expand description
Represents errors that can occur during base conversion.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BaseConversionError
impl RefUnwindSafe for BaseConversionError
impl Send for BaseConversionError
impl Sync for BaseConversionError
impl Unpin for BaseConversionError
impl UnwindSafe for BaseConversionError
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