pub struct MessageFlags {
pub streaming: bool,
pub compressed: bool,
pub signed: bool,
}Expand description
Extracted message flags
Fields§
§streaming: bool§compressed: bool§signed: boolImplementations§
Trait Implementations§
Source§impl Clone for MessageFlags
impl Clone for MessageFlags
Source§fn clone(&self) -> MessageFlags
fn clone(&self) -> MessageFlags
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MessageFlags
Source§impl Debug for MessageFlags
impl Debug for MessageFlags
impl Eq for MessageFlags
Source§impl PartialEq for MessageFlags
impl PartialEq for MessageFlags
Source§fn eq(&self, other: &MessageFlags) -> bool
fn eq(&self, other: &MessageFlags) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MessageFlags
Auto Trait Implementations§
impl Freeze for MessageFlags
impl RefUnwindSafe for MessageFlags
impl Send for MessageFlags
impl Sync for MessageFlags
impl Unpin for MessageFlags
impl UnsafeUnpin for MessageFlags
impl UnwindSafe for MessageFlags
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