pub enum BindxFlags {
Add,
Remove,
}
Expand description
Flags used by sctp_bindx
.
Variants§
Add
Add the addresses passed (corresponding to SCTP_BINDX_ADD_ADDR
)
Remove
Remove the addresses passed (corresponding to SCTP_BINDX_REM_ADDR
)
Trait Implementations§
Source§impl Clone for BindxFlags
impl Clone for BindxFlags
Source§fn clone(&self) -> BindxFlags
fn clone(&self) -> BindxFlags
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 BindxFlags
impl Debug for BindxFlags
Source§impl PartialEq for BindxFlags
impl PartialEq for BindxFlags
impl Eq for BindxFlags
impl StructuralPartialEq for BindxFlags
Auto Trait Implementations§
impl Freeze for BindxFlags
impl RefUnwindSafe for BindxFlags
impl Send for BindxFlags
impl Sync for BindxFlags
impl Unpin for BindxFlags
impl UnwindSafe for BindxFlags
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