Struct Message

Source
pub struct Message { /* private fields */ }
Expand description

This represents a DBus message.

Implementations§

Source§

impl Message

Source

pub fn decode(bytes: Bytes) -> DecodeResult<(Message, usize)>

The decode a Message and returns the offset.

Source

pub fn decode_with_fds( bytes: Bytes, fds: &[RawFd], ) -> DecodeResult<(Message, usize, usize)>

The decode a Message and returns the offset and the offset of the given FDs.

Source§

impl Message

Source§

impl Message

Source

pub fn new(header: Header, body: Vec<Value>) -> Message

Create a Message object.

Source

pub fn method_call( destination: Bus, object_path: ObjectPath, interface: Interface, member: Member, ) -> Message

Create a Message object as a MethodCall.

Source

pub fn signal( object_path: ObjectPath, interface: Interface, member: Member, ) -> Message

Create a Message object as a Signal.

Source

pub fn property_get( destination: Bus, object_path: ObjectPath, interface: Interface, property: &str, ) -> Message

Create a Message to retrieve property value.

Source

pub fn properties_get_all( destination: Bus, object_path: ObjectPath, interface: Interface, ) -> Message

Create a Message to retrieve property value.

Source

pub fn property_set( destination: Bus, object_path: ObjectPath, interface: Interface, property: &str, value: Value, ) -> Message

Create a Message to retrieve property value.

Source

pub const fn get_serial(&self) -> u32

Get the serial number.

Source

pub fn set_serial(&mut self, serial: u32)

Set the serial number.

Source

pub const fn get_path(&self) -> Option<&ObjectPath>

Get the path, if there is one in the header field.

Source

pub const fn has_path(&self) -> bool

It is true if the message contains a path in the header fields.

Source

pub const fn get_interface(&self) -> Option<&Interface>

Get the interface, if there is one in the header field.

Source

pub const fn has_interface(&self) -> bool

It is true if the message contains an interface in the header fields.

Source

pub const fn get_member(&self) -> Option<&Member>

Get the member, if there is one in the header field.

Source

pub const fn has_member(&self) -> bool

It is true if the message contains a member in the header fields.

Source

pub const fn get_error_name(&self) -> Option<&Error>

Get the error_name, if there is one in the header field.

Source

pub const fn has_error_name(&self) -> bool

It is true if the message contains an error_name in the header fields.

Source

pub const fn get_destination(&self) -> Option<&Bus>

Get the destination, if there is one in the header field.

Source

pub const fn has_destination(&self) -> bool

It is true if the message contains a destination in the header fields.

Source

pub const fn get_sender(&self) -> Option<&Bus>

Get the sender, if there is one in the header field.

Source

pub const fn has_sender(&self) -> bool

It is true if the message contains a sender in the header fields.

Source

pub const fn get_reply_serial(&self) -> Option<u32>

Get the reply_serial, if there is one in the header field.

Source

pub const fn has_reply_serial(&self) -> bool

It is true if the message contains a reply_serial in the header fields.

Source

pub fn get_signature(&self) -> Result<Vec<Type>, TypeError>

Get the signature, if there is one in the header field.

Source

pub const fn has_signature(&self) -> bool

It is true if the message contains a signature in the header fields.

Source

pub const fn get_unix_fds(&self) -> Option<u32>

Get the unix_fds, if there is one in the header field.

Source

pub const fn has_unix_fds(&self) -> bool

It is true if the message contains a unix_fds in the header fields.

Source

pub fn add_value(&mut self, value: Value)

Add a new value to the body.

Source

pub fn method_return(&self) -> Result<Message, Message>

Create a message return from this Message. Only works if this Message is a MethodCall.

Source

pub fn unknown_property(&self, property: &str) -> Message

Create a unknown property error message from this Message.

Source

pub fn unknown_path(&self) -> Option<Message>

Create a unknown path error message from this Message.

Source

pub fn unknown_interface(&self) -> Option<Message>

Create a unknown interface error message from this Message.

Source

pub fn unknown_member(&self) -> Option<Message>

Create a unknown member error message from this Message.

Source

pub fn invalid_args(&self, reason: String) -> Message

Create an invalid args error message from this Message.

Source

pub fn error(&self, name: Error, message: String) -> Message

Create an error message from this Message.

Source

pub fn get_body(&self) -> &[Value]

Get the body.

Source

pub fn get_type(&self) -> MessageType

Get the message type.

Source

pub fn split(self) -> Result<(Header, Vec<Value>), TypeError>

Split the Message object into the header and the body.

Trait Implementations§

Source§

impl Clone for Message

Source§

fn clone(&self) -> Message

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Message

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Message

Source§

fn eq(&self, other: &Message) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Message

Source§

fn partial_cmp(&self, other: &Message) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StructuralPartialEq for Message

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.