[][src]Struct format_xml::CommaFmt

#[repr(transparent)]
pub struct CommaFmt<T>(pub T);

Formats tuples as a comma separated items.

Trait Implementations

impl<T: Clone> Clone for CommaFmt<T>[src]

impl<T: Copy> Copy for CommaFmt<T>[src]

impl<T: Display, U: Display> Display for CommaFmt<(T, U)>[src]

impl<T: Display, U: Display, V: Display> Display for CommaFmt<(T, U, V)>[src]

impl<T: Display> Display for CommaFmt<[T; 2]>[src]

impl<T: Display> Display for CommaFmt<[T; 3]>[src]

impl<T: Debug> Debug for CommaFmt<T>[src]

Auto Trait Implementations

impl<T> Unpin for CommaFmt<T> where
    T: Unpin

impl<T> Sync for CommaFmt<T> where
    T: Sync

impl<T> Send for CommaFmt<T> where
    T: Send

impl<T> UnwindSafe for CommaFmt<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for CommaFmt<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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