pub enum LayoutContent {
Unsigned {
width: u32,
},
Real {
exponent: u32,
mantissa: u32,
},
Named {
name: [u8; 8],
},
}
Expand description
The content of a digit layout.
Variants§
Trait Implementations§
Source§impl Clone for LayoutContent
impl Clone for LayoutContent
Source§fn clone(&self) -> LayoutContent
fn clone(&self) -> LayoutContent
Returns a copy 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 LayoutContent
impl Debug for LayoutContent
Source§impl PartialEq for LayoutContent
impl PartialEq for LayoutContent
impl Copy for LayoutContent
impl Eq for LayoutContent
impl StructuralPartialEq for LayoutContent
Auto Trait Implementations§
impl Freeze for LayoutContent
impl RefUnwindSafe for LayoutContent
impl Send for LayoutContent
impl Sync for LayoutContent
impl Unpin for LayoutContent
impl UnwindSafe for LayoutContent
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