pub struct FormatSpec<'input> {Show 13 fields
pub fill: Option<char>,
pub fill_span: Option<Range<usize>>,
pub align: Alignment,
pub sign: Option<Sign>,
pub alternate: bool,
pub zero_pad: bool,
pub debug_hex: Option<DebugHex>,
pub precision: Count<'input>,
pub precision_span: Option<Range<usize>>,
pub width: Count<'input>,
pub width_span: Option<Range<usize>>,
pub ty: &'input str,
pub ty_span: Option<Range<usize>>,
}
Expand description
Specification for the formatting of an argument in the format string.
Fields§
§fill: Option<char>
Optionally specified character to fill alignment with.
fill_span: Option<Range<usize>>
Span of the optionally specified fill character.
align: Alignment
Optionally specified alignment.
sign: Option<Sign>
The +
or -
flag.
alternate: bool
The #
flag.
zero_pad: bool
The 0
flag.
debug_hex: Option<DebugHex>
The x
or X
flag. (Only for Debug
.)
precision: Count<'input>
The integer precision to use.
precision_span: Option<Range<usize>>
The span of the precision formatting flag (for diagnostics).
width: Count<'input>
The string width requested for the resulting format.
width_span: Option<Range<usize>>
The span of the width formatting flag (for diagnostics).
ty: &'input str
The descriptor string representing the name of the format desired for this argument, this can be empty or any number of characters, although it is required to be one word.
ty_span: Option<Range<usize>>
The span of the descriptor string (for diagnostics).
Trait Implementations§
Source§impl<'input> Clone for FormatSpec<'input>
impl<'input> Clone for FormatSpec<'input>
Source§fn clone(&self) -> FormatSpec<'input>
fn clone(&self) -> FormatSpec<'input>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'input> Debug for FormatSpec<'input>
impl<'input> Debug for FormatSpec<'input>
Source§impl<'input> Default for FormatSpec<'input>
impl<'input> Default for FormatSpec<'input>
Source§fn default() -> FormatSpec<'input>
fn default() -> FormatSpec<'input>
Returns the “default value” for a type. Read more
Source§impl<'input> PartialEq for FormatSpec<'input>
impl<'input> PartialEq for FormatSpec<'input>
impl<'input> StructuralPartialEq for FormatSpec<'input>
Auto Trait Implementations§
impl<'input> Freeze for FormatSpec<'input>
impl<'input> RefUnwindSafe for FormatSpec<'input>
impl<'input> Send for FormatSpec<'input>
impl<'input> Sync for FormatSpec<'input>
impl<'input> Unpin for FormatSpec<'input>
impl<'input> UnwindSafe for FormatSpec<'input>
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