Skip to main content

NestedFormatDescription

Struct NestedFormatDescription 

Source
pub(super) struct NestedFormatDescription<'a, const VERSION: u8> {
    pub(super) leading_whitespace: Option<Spanned<&'a str>>,
    pub(super) opening_bracket: Location,
    pub(super) items: Vec<Item<'a, VERSION>>,
    pub(super) closing_bracket: Location,
}
Available on (crate features formatting or parsing) and crate feature alloc only.
Expand description

A format description that is nested within another format description.

Fields§

§leading_whitespace: Option<Spanned<&'a str>>

Whitespace between the end of the previous item and the opening bracket.

§opening_bracket: Location

Where the opening bracket was in the format string.

§items: Vec<Item<'a, VERSION>>

The items within the nested format description.

§closing_bracket: Location

Where the closing bracket was in the format string.

Auto Trait Implementations§

§

impl<'a, const VERSION: u8> Freeze for NestedFormatDescription<'a, VERSION>

§

impl<'a, const VERSION: u8> RefUnwindSafe for NestedFormatDescription<'a, VERSION>

§

impl<'a, const VERSION: u8> Send for NestedFormatDescription<'a, VERSION>

§

impl<'a, const VERSION: u8> Sync for NestedFormatDescription<'a, VERSION>

§

impl<'a, const VERSION: u8> Unpin for NestedFormatDescription<'a, VERSION>

§

impl<'a, const VERSION: u8> UnsafeUnpin for NestedFormatDescription<'a, VERSION>

§

impl<'a, const VERSION: u8> UnwindSafe for NestedFormatDescription<'a, VERSION>

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

Source§

#[doc(hidden)]
const SIZE: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)]
const ALIGN: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)]
const ALIGNMENT: Alignment = _

🔬This is a nightly-only experimental API. (ptr_alignment_type)
Source§

#[doc(hidden)]
const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
Source§

#[doc(hidden)]
const LAYOUT: Layout = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)]
const MAX_SLICE_LEN: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
The largest safe length for a [Self]. 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.