#[repr(u16)]pub enum AssocChangeState {
CommUp = 0,
CommLost = 1,
Restart = 2,
ShutdownComplete = 3,
CannotStartAssoc = 4,
Unknown = 5,
}
Expand description
Association Change States
Variants§
CommUp = 0
SCTP communication up.
CommLost = 1
SCTP communication lost.
Restart = 2
SCTP communication restarted.
ShutdownComplete = 3
Shutdown complete.
CannotStartAssoc = 4
Cannot start association.
Unknown = 5
Unknown State: This value indicates an error
Trait Implementations§
Source§impl Clone for AssocChangeState
impl Clone for AssocChangeState
Source§fn clone(&self) -> AssocChangeState
fn clone(&self) -> AssocChangeState
Returns a duplicate 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 AssocChangeState
impl Debug for AssocChangeState
Source§impl PartialEq for AssocChangeState
impl PartialEq for AssocChangeState
impl Eq for AssocChangeState
impl StructuralPartialEq for AssocChangeState
Auto Trait Implementations§
impl Freeze for AssocChangeState
impl RefUnwindSafe for AssocChangeState
impl Send for AssocChangeState
impl Sync for AssocChangeState
impl Unpin for AssocChangeState
impl UnwindSafe for AssocChangeState
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