[][src]Enum defmt_parser::Fragment

pub enum Fragment<'f> {
    Literal(Cow<'f, str>),
    Parameter(Parameter),
}
This is supported on unstable only.

A part of a format string.

Variants

Literal(Cow<'f, str>)

A literal string (eg. "literal " in "literal {:?}").

Parameter(Parameter)

A format parameter.

Trait Implementations

impl<'f> Clone for Fragment<'f>[src]

impl<'f> Debug for Fragment<'f>[src]

impl<'f> PartialEq<Fragment<'f>> for Fragment<'f>[src]

impl<'f> StructuralPartialEq for Fragment<'f>[src]

Auto Trait Implementations

impl<'f> RefUnwindSafe for Fragment<'f>

impl<'f> Send for Fragment<'f>

impl<'f> Sync for Fragment<'f>

impl<'f> Unpin for Fragment<'f>

impl<'f> UnwindSafe for Fragment<'f>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.