Enum webrtc_sctp::packet::parameter::Parameter [−][src]
pub enum Parameter {
HeartbeatInfo(Vec<u8>),
IPv4Address(IPv4Address),
IPv6Address(IPv6Address),
StateCookie(Vec<u8>),
UnrecognizedParameter(Vec<u8>),
CookiePreservative(u32),
HostNameAddress(String),
SupportedAddressTypes(Vec<u16>),
ECNCapable,
ForwardTSNSupported,
Unknown(u16, Vec<u8>),
}Variants
HeartbeatInfo(Vec<u8>)IPv4Address(IPv4Address)IPv6Address(IPv6Address)StateCookie(Vec<u8>)UnrecognizedParameter(Vec<u8>)CookiePreservative(u32)HostNameAddress(String)SupportedAddressTypes(Vec<u16>)ECNCapableForwardTSNSupportedUnknown(u16, Vec<u8>)
Trait Implementations
impl Clone for Parameter[src]
impl Clone for Parameterfn clone(&self) -> Parameter[src]
fn clone(&self) -> ParameterReturns 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 Debug for Parameter[src]
impl Debug for Parameterfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Parameter[src]
impl PartialEq for Parameterfn eq(&self, other: &Parameter) -> bool[src]
fn eq(&self, other: &Parameter) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Parameter) -> bool[src]
fn ne(&self, other: &Parameter) -> boolThis method tests for !=.
impl Display for Parameter[src]
impl Display for Parameter