pub(super) struct NestedFormatDescription<'a, Item> {
pub(super) leading_whitespace: Option<Spanned<&'a str>>,
pub(super) opening_bracket: Location,
pub(super) items: Vec<Item>,
pub(super) closing_bracket: Location,
}Available on crate feature
alloc and (crate features formatting or parsing) 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: LocationWhere the opening bracket was in the format string.
items: Vec<Item>The items within the nested format description.
closing_bracket: LocationWhere the closing bracket was in the format string.
Auto Trait Implementations§
impl<'a, Item> Freeze for NestedFormatDescription<'a, Item>
impl<'a, Item> RefUnwindSafe for NestedFormatDescription<'a, Item>where
Item: RefUnwindSafe,
impl<'a, Item> Send for NestedFormatDescription<'a, Item>where
Item: Send,
impl<'a, Item> Sync for NestedFormatDescription<'a, Item>where
Item: Sync,
impl<'a, Item> Unpin for NestedFormatDescription<'a, Item>where
Item: Unpin,
impl<'a, Item> UnsafeUnpin for NestedFormatDescription<'a, Item>
impl<'a, Item> UnwindSafe for NestedFormatDescription<'a, Item>where
Item: UnwindSafe,
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
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
🔬This is a nightly-only experimental API. (
ptr_alignment_type)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[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