pub enum SockType {
SockStream = 1,
SockDgram = 2,
SockSeqpacket = 5,
SockRdm = 4,
}
Expand description
TIPC socket type to be used.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SockType
impl RefUnwindSafe for SockType
impl Send for SockType
impl Sync for SockType
impl Unpin for SockType
impl UnwindSafe for SockType
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