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§
source§impl Clone for FormatOptions
impl Clone for FormatOptions
source§fn clone(&self) -> FormatOptions
fn clone(&self) -> FormatOptions
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 FormatOptions
impl Debug for FormatOptions
source§impl Default for FormatOptions
impl Default for FormatOptions
source§fn default() -> FormatOptions
fn default() -> FormatOptions
Returns the “default value” for a type. Read more
source§impl PartialEq<FormatOptions> for FormatOptions
impl PartialEq<FormatOptions> for FormatOptions
source§fn 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§
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