pub struct EmptyRadixLiteral {
pub radix: u8,
pub allowed: &'static [char],
}Expand description
No number was provided in a radix literal.
Fields§
§radix: u8The radix that was expected.
allowed: &'static [char]The set of allowed digits for this radix.
Trait Implementations§
Source§impl Clone for EmptyRadixLiteral
impl Clone for EmptyRadixLiteral
Source§fn clone(&self) -> EmptyRadixLiteral
fn clone(&self) -> EmptyRadixLiteral
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 EmptyRadixLiteral
impl Debug for EmptyRadixLiteral
Source§impl ErrorKind for EmptyRadixLiteral
impl ErrorKind for EmptyRadixLiteral
Source§impl PartialEq for EmptyRadixLiteral
impl PartialEq for EmptyRadixLiteral
impl StructuralPartialEq for EmptyRadixLiteral
Auto Trait Implementations§
impl Freeze for EmptyRadixLiteral
impl RefUnwindSafe for EmptyRadixLiteral
impl Send for EmptyRadixLiteral
impl Sync for EmptyRadixLiteral
impl Unpin for EmptyRadixLiteral
impl UnwindSafe for EmptyRadixLiteral
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