#[repr(C)]pub enum UdtStatus {
INIT = 1,
OPENED = 2,
LISTENING = 3,
CONNECTING = 4,
CONNECTED = 5,
BROKEN = 6,
CLOSING = 7,
CLOSED = 8,
NONEXIST = 9,
}Variants§
INIT = 1
OPENED = 2
LISTENING = 3
CONNECTING = 4
CONNECTED = 5
BROKEN = 6
CLOSING = 7
CLOSED = 8
NONEXIST = 9
Trait Implementations§
impl Copy for UdtStatus
impl StructuralPartialEq for UdtStatus
Auto Trait Implementations§
impl Freeze for UdtStatus
impl RefUnwindSafe for UdtStatus
impl Send for UdtStatus
impl Sync for UdtStatus
impl Unpin for UdtStatus
impl UnwindSafe for UdtStatus
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