[][src]Struct rustbus::message_builder::OutMessage

pub struct OutMessage {
    pub body: OutMessageBody,
    pub interface: Option<String>,
    pub member: Option<String>,
    pub object: Option<String>,
    pub destination: Option<String>,
    pub serial: Option<u32>,
    pub sender: Option<String>,
    pub error_name: Option<String>,
    pub response_serial: Option<u32>,
    pub num_fds: Option<u32>,
    pub raw_fds: Vec<RawFd>,
    pub typ: MessageType,
    pub flags: u8,
}

Fields

body: OutMessageBodyinterface: Option<String>member: Option<String>object: Option<String>destination: Option<String>serial: Option<u32>sender: Option<String>error_name: Option<String>response_serial: Option<u32>num_fds: Option<u32>raw_fds: Vec<RawFd>typ: MessageTypeflags: u8

Implementations

impl OutMessage[src]

pub fn get_buf(&self) -> &[u8][src]

pub fn get_sig(&self) -> &str[src]

pub fn new() -> Self[src]

Trait Implementations

impl Debug for OutMessage[src]

impl Default for OutMessage[src]

Auto Trait Implementations

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.