Struct MessageHeader

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

This represents a DBus message header.

Implementations§

Source§

impl Header

Source

pub fn new( is_le: bool, message_type: MessageType, message_flags: MessageFlags, version: u8, serial: u32, fields: HeaderFields, ) -> Result<Header, HeaderError>

Create a [MessageHeader] object. It can fail if the required header fields are not present.

Source

pub const fn get_serial(&self) -> u32

Get 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) -> Option<&[Type]>

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 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, error: Error, message: String) -> Message

Create an error message from this Message.

Source

pub fn get_type(&self) -> MessageType

Get the message type.

Trait Implementations§

Source§

impl Clone for Header

Source§

fn clone(&self) -> Header

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 Header

Source§

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

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

impl Ord for Header

Source§

fn cmp(&self, other: &Header) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Header

Source§

fn eq(&self, other: &Header) -> 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 Header

Source§

fn partial_cmp(&self, other: &Header) -> 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 Eq for Header

Source§

impl StructuralPartialEq for Header

Auto Trait Implementations§

§

impl Freeze for Header

§

impl RefUnwindSafe for Header

§

impl Send for Header

§

impl Sync for Header

§

impl Unpin for Header

§

impl UnwindSafe for Header

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.