#[repr(u8)]pub enum StringFormatRepresentation {
Debug = 0,
HexLower = 1,
HexUpper = 2,
Binary = 3,
Octal = 4,
ExpLower = 5,
ExpUpper = 6,
}Expand description
Alternative representations formatted strings
Variants§
Trait Implementations§
Source§impl Clone for StringFormatRepresentation
impl Clone for StringFormatRepresentation
Source§fn clone(&self) -> StringFormatRepresentation
fn clone(&self) -> StringFormatRepresentation
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 StringFormatRepresentation
impl Debug for StringFormatRepresentation
Source§impl TryFrom<u8> for StringFormatRepresentation
impl TryFrom<u8> for StringFormatRepresentation
impl Copy for StringFormatRepresentation
impl Eq for StringFormatRepresentation
impl StructuralPartialEq for StringFormatRepresentation
Auto Trait Implementations§
impl Freeze for StringFormatRepresentation
impl RefUnwindSafe for StringFormatRepresentation
impl Send for StringFormatRepresentation
impl Sync for StringFormatRepresentation
impl Unpin for StringFormatRepresentation
impl UnwindSafe for StringFormatRepresentation
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