Struct async_rustbus::rustbus_core::message_builder::DynamicHeader[][src]

pub struct DynamicHeader {
    pub interface: Option<String>,
    pub member: Option<String>,
    pub object: Option<String>,
    pub destination: Option<String>,
    pub serial: Option<NonZeroU32>,
    pub sender: Option<String>,
    pub signature: Option<String>,
    pub error_name: Option<String>,
    pub response_serial: Option<NonZeroU32>,
    pub num_fds: Option<u32>,
}

The dynamic part of a dbus message header

Fields

interface: Option<String>member: Option<String>object: Option<String>destination: Option<String>serial: Option<NonZeroU32>sender: Option<String>signature: Option<String>error_name: Option<String>response_serial: Option<NonZeroU32>num_fds: Option<u32>

Implementations

impl DynamicHeader[src]

pub fn make_error_response<S: Into<String>>(
    &self,
    error_name: S,
    error_msg: Option<String>
) -> MarshalledMessage
[src]

Make a correctly addressed error response with the correct response serial

pub fn make_response(&self) -> MarshalledMessage[src]

Make a correctly addressed response with the correct response serial

pub fn validate(&self) -> bool[src]

Trait Implementations

impl Clone for DynamicHeader[src]

impl Debug for DynamicHeader[src]

impl Default for DynamicHeader[src]

impl Signature for DynamicHeader[src]

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

Auto Trait Implementations

impl RefUnwindSafe for DynamicHeader

impl Send for DynamicHeader

impl Sync for DynamicHeader

impl Unpin for DynamicHeader

impl UnwindSafe for DynamicHeader

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.