Struct rustc_builtin_macros::format::ast::FormatOptions
source · [−]pub struct FormatOptions {
pub width: Option<FormatCount>,
pub precision: Option<FormatCount>,
pub alignment: Option<FormatAlignment>,
pub fill: Option<char>,
pub flags: u32,
}
Fields
width: Option<FormatCount>
The width. E.g. {:5}
or {:width$}
.
precision: Option<FormatCount>
The precision. E.g. {:.5}
or {:.precision$}
.
alignment: Option<FormatAlignment>
The alignment. E.g. {:>}
or {:<}
or {:^}
.
fill: Option<char>
The fill character. E.g. the .
in {:.>10}
.
flags: u32
The +
, -
, 0
, #
, x?
and X?
flags.
Trait Implementations
sourceimpl Clone for FormatOptions
impl Clone for FormatOptions
sourcefn clone(&self) -> FormatOptions
fn clone(&self) -> FormatOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FormatOptions
impl Debug for FormatOptions
sourceimpl Default for FormatOptions
impl Default for FormatOptions
sourcefn default() -> FormatOptions
fn default() -> FormatOptions
Returns the “default value” for a type. Read more
sourceimpl PartialEq<FormatOptions> for FormatOptions
impl PartialEq<FormatOptions> for FormatOptions
sourcefn eq(&self, other: &FormatOptions) -> bool
fn eq(&self, other: &FormatOptions) -> bool
impl Eq for FormatOptions
impl StructuralEq for FormatOptions
impl StructuralPartialEq for FormatOptions
Auto Trait Implementations
impl RefUnwindSafe for FormatOptions
impl !Send for FormatOptions
impl !Sync for FormatOptions
impl Unpin for FormatOptions
impl UnwindSafe for FormatOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 80 bytes