Struct webrtc_sctp::Message [−][src]
pub struct Message {
pub tsn: TSN,
pub unordered: bool,
pub stream_id: u16,
pub ssn: SSN,
pub payload_protocol_id: u32,
pub buffer: Buffer,
}A message in SCTP is the basic unit of data used by the upper-layer protocol, and is split over one or more DATA chunks for transmission.
Fields
tsn: TSN
unordered: bool
stream_id: u16
ssn: SSN
payload_protocol_id: u32
buffer: Buffer
Trait Implementations
impl Clone for Message[src]
impl Clone for Messagefn clone(&self) -> Message[src]
fn clone(&self) -> MessageReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for Message[src]
impl PartialEq for Messagefn eq(&self, other: &Message) -> bool[src]
fn eq(&self, other: &Message) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Message) -> bool[src]
fn ne(&self, other: &Message) -> boolThis method tests for !=.
impl Debug for Message[src]
impl Debug for Message