pub enum StackState {
Uninitialized,
Initializing,
Ready,
Error,
}Expand description
Network stack state.
Variants§
Uninitialized
Stack is not initialized.
Initializing
Stack is initializing.
Ready
Stack is ready to send/receive.
Error
Stack has encountered an error.
Trait Implementations§
Source§impl Clone for StackState
impl Clone for StackState
Source§fn clone(&self) -> StackState
fn clone(&self) -> StackState
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 StackState
impl Debug for StackState
Source§impl PartialEq for StackState
impl PartialEq for StackState
impl Copy for StackState
impl Eq for StackState
impl StructuralPartialEq for StackState
Auto Trait Implementations§
impl Freeze for StackState
impl RefUnwindSafe for StackState
impl Send for StackState
impl Sync for StackState
impl Unpin for StackState
impl UnsafeUnpin for StackState
impl UnwindSafe for StackState
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