Struct async_rustbus::rustbus_core::message_builder::MarshalledMessage [−][src]
pub struct MarshalledMessage { pub body: MarshalledMessageBody, pub dynheader: DynamicHeader, pub typ: MessageType, pub flags: u8, }
Message received by a connection or in preparation before being sent over a connection.
This represents a message while it is being built before it is sent over the connection. The body accepts everything that implements the Marshal trait (e.g. all basic types, strings, slices, Hashmaps,…..) And you can of course write an Marshal impl for your own datastructures. See the doc on the Marshal trait what you have to look out for when doing this though.
Fields
body: MarshalledMessageBody
dynheader: DynamicHeader
typ: MessageType
flags: u8
Implementations
impl MarshalledMessage
[src]
impl MarshalledMessage
[src]pub fn get_buf(&self) -> &[u8]
[src]
pub fn get_sig(&self) -> &str
[src]
pub fn new() -> Self
[src]
New message with the default little endian byteorder
pub fn with_byteorder(b: ByteOrder) -> Self
[src]
New messagebody with a chosen byteorder
pub fn reserve(&mut self, additional: usize)
[src]
Reserves space for additional
bytes in the internal buffer. This is useful to reduce the amount of allocations done while marshalling,
if you can predict somewhat accuratly how many bytes you will be marshalling.
pub fn marshal_header(
&self,
serial: NonZeroU32,
hdr_buf: &mut Vec<u8>
) -> Result<(), Error>
[src]
&self,
serial: NonZeroU32,
hdr_buf: &mut Vec<u8>
) -> Result<(), Error>
Trait Implementations
impl Default for MarshalledMessage
[src]
impl Default for MarshalledMessage
[src]