#[repr(u32)]pub enum uv_udp_flags {
UV_UDP_IPV6ONLY = 1,
UV_UDP_PARTIAL = 2,
UV_UDP_REUSEADDR = 4,
UV_UDP_MMSG_CHUNK = 8,
UV_UDP_MMSG_FREE = 16,
UV_UDP_RECVMMSG = 256,
}Variants§
UV_UDP_IPV6ONLY = 1
UV_UDP_PARTIAL = 2
UV_UDP_REUSEADDR = 4
UV_UDP_MMSG_CHUNK = 8
UV_UDP_MMSG_FREE = 16
UV_UDP_RECVMMSG = 256
Trait Implementations§
Source§impl Clone for uv_udp_flags
impl Clone for uv_udp_flags
Source§fn clone(&self) -> uv_udp_flags
fn clone(&self) -> uv_udp_flags
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 uv_udp_flags
impl Debug for uv_udp_flags
Source§impl Hash for uv_udp_flags
impl Hash for uv_udp_flags
Source§impl PartialEq for uv_udp_flags
impl PartialEq for uv_udp_flags
impl Copy for uv_udp_flags
impl Eq for uv_udp_flags
impl StructuralPartialEq for uv_udp_flags
Auto Trait Implementations§
impl Freeze for uv_udp_flags
impl RefUnwindSafe for uv_udp_flags
impl Send for uv_udp_flags
impl Sync for uv_udp_flags
impl Unpin for uv_udp_flags
impl UnwindSafe for uv_udp_flags
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