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: LocationWhere the opening bracket was in the format string.
items: Vec<Item<'a, VERSION>>The items within the nested format description.
closing_bracket: LocationWhere 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> 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