Enum async_rustbus::rustbus_core::message_builder::HdrVar[][src]

pub enum HdrVar<'fds, 'buf> {
    Path(&'buf ObjectPath),
    Str(&'buf str),
    U32(u32),
    Sig(&'buf SigStr),
    Catchall(Variant<'fds, 'buf>),
}

Variants

Path(&'buf ObjectPath)
Str(&'buf str)
U32(u32)
Sig(&'buf SigStr)
Catchall(Variant<'fds, 'buf>)

Trait Implementations

impl<'fds, 'buf> Debug for HdrVar<'fds, 'buf>[src]

impl<'fds, 'buf> Marshal for HdrVar<'fds, 'buf>[src]

impl<'fds, 'buf> Signature for HdrVar<'fds, 'buf>[src]

impl<'buf, 'fds> Unmarshal<'buf, 'fds> for HdrVar<'fds, 'buf>[src]

Auto Trait Implementations

impl<'fds, 'buf> RefUnwindSafe for HdrVar<'fds, 'buf>

impl<'fds, 'buf> Send for HdrVar<'fds, 'buf>

impl<'fds, 'buf> Sync for HdrVar<'fds, 'buf>

impl<'fds, 'buf> Unpin for HdrVar<'fds, 'buf>

impl<'fds, 'buf> UnwindSafe for HdrVar<'fds, 'buf>

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, 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.