Struct zbus::MessageHeader

source ·
pub struct MessageHeader<'m> { /* private fields */ }
Expand description

The message header, containing all the metadata about the message.

This includes both the MessagePrimaryHeader and MessageFields.

Implementations§

source§

impl<'m> MessageHeader<'m>

source

pub fn new(primary: MessagePrimaryHeader, fields: MessageFields<'m>) -> Self

Create a new MessageHeader instance.

source

pub fn primary(&self) -> &MessagePrimaryHeader

Get a reference to the primary header.

source

pub fn primary_mut(&mut self) -> &mut MessagePrimaryHeader

Get a mutable reference to the primary header.

source

pub fn into_primary(self) -> MessagePrimaryHeader

Get the primary header, consuming self.

source

pub fn fields<'s>(&'s self) -> &'s MessageFields<'m>

Get a reference to the message fields.

source

pub fn fields_mut<'s>(&'s mut self) -> &'s mut MessageFields<'m>

Get a mutable reference to the message fields.

source

pub fn into_fields(self) -> MessageFields<'m>

Get the message fields, consuming self.

source

pub fn message_type(&self) -> Result<MessageType, Error>

The message type

source

pub fn path<'s>(&'s self) -> Result<Option<&ObjectPath<'m>>, Error>

The object to send a call to, or the object a signal is emitted from.

source

pub fn interface<'s>(&'s self) -> Result<Option<&InterfaceName<'m>>, Error>

The interface to invoke a method call on, or that a signal is emitted from.

source

pub fn member<'s>(&'s self) -> Result<Option<&MemberName<'m>>, Error>

The member, either the method name or signal name.

source

pub fn error_name<'s>(&'s self) -> Result<Option<&ErrorName<'m>>, Error>

The name of the error that occurred, for errors.

source

pub fn reply_serial(&self) -> Result<Option<u32>, Error>

The serial number of the message this message is a reply to.

source

pub fn destination<'s>(&'s self) -> Result<Option<&BusName<'m>>, Error>

The name of the connection this message is intended for.

source

pub fn sender<'s>(&'s self) -> Result<Option<&UniqueName<'m>>, Error>

Unique name of the sending connection.

source

pub fn signature(&self) -> Result<Option<&Signature<'m>>, Error>

The signature of the message body.

source

pub fn unix_fds(&self) -> Result<Option<u32>, Error>

The number of Unix file descriptors that accompany the message.

Trait Implementations§

source§

impl<'m> Clone for MessageHeader<'m>

source§

fn clone(&self) -> MessageHeader<'m>

Returns a copy 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<'m> Debug for MessageHeader<'m>

source§

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

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

impl<'de: 'm, 'm> Deserialize<'de> for MessageHeader<'m>

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'m> Serialize for MessageHeader<'m>

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<'m> Type for MessageHeader<'m>

source§

fn signature() -> Signature<'static>

Get the signature for the implementing type. Read more

Auto Trait Implementations§

§

impl<'m> RefUnwindSafe for MessageHeader<'m>

§

impl<'m> Send for MessageHeader<'m>

§

impl<'m> Sync for MessageHeader<'m>

§

impl<'m> Unpin for MessageHeader<'m>

§

impl<'m> UnwindSafe for MessageHeader<'m>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<'de, T> DynamicDeserialize<'de> for Twhere T: Type + Deserialize<'de> + ?Sized,

§

type Deserializer = PhantomData<T>

A DeserializeSeed implementation for this type.
source§

fn deserializer_for_signature<S>( signature: S ) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>where S: TryInto<Signature<'de>>, <S as TryInto<Signature<'de>>>::Error: Into<Error>,

Get a deserializer compatible with this signature.
source§

impl<T> DynamicType for Twhere T: Type + ?Sized,

source§

fn dynamic_signature(&self) -> Signature<'_>

Get the signature for the implementing type. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,