Struct rustc_parse_format::FormatSpec

source ·
pub struct FormatSpec<'a> {
Show 13 fields pub fill: Option<char>, pub fill_span: Option<InnerSpan>, pub align: Alignment, pub sign: Option<Sign>, pub alternate: bool, pub zero_pad: bool, pub debug_hex: Option<DebugHex>, pub precision: Count<'a>, pub precision_span: Option<InnerSpan>, pub width: Count<'a>, pub width_span: Option<InnerSpan>, pub ty: &'a str, pub ty_span: Option<InnerSpan>,
}
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<InnerSpan>

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<'a>

The integer precision to use.

§precision_span: Option<InnerSpan>

The span of the precision formatting flag (for diagnostics).

§width: Count<'a>

The string width requested for the resulting format.

§width_span: Option<InnerSpan>

The span of the width formatting flag (for diagnostics).

§ty: &'a 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<InnerSpan>

The span of the descriptor string (for diagnostics).

Trait Implementations§

source§

impl<'a> Clone for FormatSpec<'a>

source§

fn clone(&self) -> FormatSpec<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for FormatSpec<'a>

source§

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

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

impl<'a> PartialEq for FormatSpec<'a>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Copy for FormatSpec<'a>

source§

impl<'a> StructuralPartialEq for FormatSpec<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for FormatSpec<'a>

§

impl<'a> RefUnwindSafe for FormatSpec<'a>

§

impl<'a> Send for FormatSpec<'a>

§

impl<'a> Sync for FormatSpec<'a>

§

impl<'a> Unpin for FormatSpec<'a>

§

impl<'a> UnwindSafe for FormatSpec<'a>

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> 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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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

§

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

§

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

§

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.

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: 208 bytes