Struct FormatSpec

Source
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>

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl<'input> Debug for FormatSpec<'input>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'input> Default for FormatSpec<'input>

Source§

fn default() -> FormatSpec<'input>

Returns the “default value” for a type. Read more
Source§

impl<'input> PartialEq for FormatSpec<'input>

Source§

fn eq(&self, other: &FormatSpec<'input>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

const fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.