pub struct FormatSpec {
pub fill: Option<Fill>,
pub align: Option<Align>,
pub sign: Option<Sign>,
pub alternate: bool,
pub pad_with_zeros: bool,
pub width: Option<Count>,
pub percision: Option<Precision>,
pub kind: Type,
}
Fields§
§fill: Option<Fill>
§align: Option<Align>
§sign: Option<Sign>
§alternate: bool
§pad_with_zeros: bool
§width: Option<Count>
§percision: Option<Precision>
§kind: Type
Trait Implementations§
Source§impl Debug for FormatSpec
impl Debug for FormatSpec
Source§impl PartialEq for FormatSpec
impl PartialEq for FormatSpec
impl Eq for FormatSpec
impl StructuralPartialEq for FormatSpec
Auto Trait Implementations§
impl Freeze for FormatSpec
impl RefUnwindSafe for FormatSpec
impl Send for FormatSpec
impl Sync for FormatSpec
impl Unpin for FormatSpec
impl UnwindSafe for FormatSpec
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