#[repr(u32)]pub enum CoapSessionState {
None = 0,
Connecting = 1,
Handshake = 2,
Csm = 3,
Established = 4,
}
Expand description
Representation of the states that a session can be in.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CoapSessionState
impl RefUnwindSafe for CoapSessionState
impl Send for CoapSessionState
impl Sync for CoapSessionState
impl Unpin for CoapSessionState
impl UnwindSafe for CoapSessionState
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