pub enum IntError {
Bounds(TryFromIntError),
Parsing(ParseIntError),
}
Variants§
Bounds(TryFromIntError)
Parsing(ParseIntError)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IntError
impl RefUnwindSafe for IntError
impl Send for IntError
impl Sync for IntError
impl Unpin for IntError
impl UnwindSafe for IntError
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