#[repr(transparent)]pub struct MessageType(pub u8);
Expand description
One byte field to represent the message type.
A range of type IDs (1-6) are reserved for protocol control messages.
Tuple Fields§
§0: u8
Implementations§
Source§impl MessageType
impl MessageType
Sourcepub const SetChunkSize: Self
pub const SetChunkSize: Self
Set Chunk Size
Sourcepub const Acknowledgement: Self
pub const Acknowledgement: Self
Acknowledgement
Sourcepub const UserControlEvent: Self
pub const UserControlEvent: Self
User Control Messages
Sourcepub const WindowAcknowledgementSize: Self
pub const WindowAcknowledgementSize: Self
Window Acknowledgement Size
Sourcepub const SetPeerBandwidth: Self
pub const SetPeerBandwidth: Self
Set Peer Bandwidth
Amf3-encoded Shared Object
Sourcepub const CommandAMF3: Self
pub const CommandAMF3: Self
Amf3-encoded Command
Amf0-encoded Shared Object
Sourcepub const CommandAMF0: Self
pub const CommandAMF0: Self
Amf0-encoded Command
Trait Implementations§
Source§impl Clone for MessageType
impl Clone for MessageType
Source§fn clone(&self) -> MessageType
fn clone(&self) -> MessageType
Returns a copy 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 moreSource§impl Debug for MessageType
impl Debug for MessageType
Source§impl From<MessageType> for u8
impl From<MessageType> for u8
Source§fn from(value: MessageType) -> Self
fn from(value: MessageType) -> Self
Converts to this type from the input type.
Source§impl From<u8> for MessageType
impl From<u8> for MessageType
Source§impl Hash for MessageType
impl Hash for MessageType
Source§impl Ord for MessageType
impl Ord for MessageType
Source§fn cmp(&self, other: &MessageType) -> Ordering
fn cmp(&self, other: &MessageType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MessageType
impl PartialEq for MessageType
Source§impl PartialOrd for MessageType
impl PartialOrd for MessageType
impl Copy for MessageType
impl Eq for MessageType
impl StructuralPartialEq for MessageType
Auto Trait Implementations§
impl Freeze for MessageType
impl RefUnwindSafe for MessageType
impl Send for MessageType
impl Sync for MessageType
impl Unpin for MessageType
impl UnwindSafe for MessageType
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