pub struct MsgGlobalData {
pub msg_id: i32,
pub msg_max_size: i32,
pub msg_flags: MsgFlags,
pub msg_security_model: SecurityModel,
}Expand description
Message global data header (msgGlobalData).
Fields§
§msg_id: i32Message identifier for request/response correlation
msg_max_size: i32Maximum message size the sender can accept
msg_flags: MsgFlagsMessage flags (security level + reportable)
msg_security_model: SecurityModelSecurity model (always USM=3 for our implementation)
Implementations§
Trait Implementations§
Source§impl Clone for MsgGlobalData
impl Clone for MsgGlobalData
Source§fn clone(&self) -> MsgGlobalData
fn clone(&self) -> MsgGlobalData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MsgGlobalData
impl RefUnwindSafe for MsgGlobalData
impl Send for MsgGlobalData
impl Sync for MsgGlobalData
impl Unpin for MsgGlobalData
impl UnwindSafe for MsgGlobalData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more