pub struct InvalidRadixBase {
pub too_large: bool,
}Expand description
The base used in radix notation was out of the allowed range.
Fields§
§too_large: boolThe given base was too large. (Otherwise, it was too small.)
Trait Implementations§
Source§impl Clone for InvalidRadixBase
impl Clone for InvalidRadixBase
Source§fn clone(&self) -> InvalidRadixBase
fn clone(&self) -> InvalidRadixBase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InvalidRadixBase
impl Debug for InvalidRadixBase
Source§impl ErrorKind for InvalidRadixBase
impl ErrorKind for InvalidRadixBase
Source§impl PartialEq for InvalidRadixBase
impl PartialEq for InvalidRadixBase
impl StructuralPartialEq for InvalidRadixBase
Auto Trait Implementations§
impl Freeze for InvalidRadixBase
impl RefUnwindSafe for InvalidRadixBase
impl Send for InvalidRadixBase
impl Sync for InvalidRadixBase
impl Unpin for InvalidRadixBase
impl UnwindSafe for InvalidRadixBase
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