#[repr(C)]pub struct NxtInfo {
pub sid: u16,
pub flags: u16,
pub ppid: u32,
pub length: u32,
pub assoc_id: AssociationId,
}Expand description
Structure representing Ancillary next information (See Section 5.3.5)
Fields§
§sid: u16Stream ID for the next received data.
flags: u16Flags for the next received data.
ppid: u32Application protocol ID.
length: u32Length of the message to be used in the next sctp_recv call.
assoc_id: AssociationIdSCTP Association ID.
Trait Implementations§
impl Eq for NxtInfo
impl StructuralPartialEq for NxtInfo
Auto Trait Implementations§
impl Freeze for NxtInfo
impl RefUnwindSafe for NxtInfo
impl Send for NxtInfo
impl Sync for NxtInfo
impl Unpin for NxtInfo
impl UnwindSafe for NxtInfo
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