#[repr(C)]pub struct everything_plugin_os_winsock_sockaddr_in6 {
pub sin6_family: c_short,
pub sin6_port: c_ushort,
pub sin6_flowinfo: c_ulong,
pub sin6_addr: everything_plugin_os_winsock_in6_addr,
pub sin6_scope_id: c_ulong,
}
Fields§
§sin6_family: c_short
§sin6_port: c_ushort
AF_INET6
sin6_flowinfo: c_ulong
Transport level port number
sin6_addr: everything_plugin_os_winsock_in6_addr
IPv6 flow information
sin6_scope_id: c_ulong
IPv6 address
Trait Implementations§
Source§impl Clone for everything_plugin_os_winsock_sockaddr_in6
impl Clone for everything_plugin_os_winsock_sockaddr_in6
Source§fn clone(&self) -> everything_plugin_os_winsock_sockaddr_in6
fn clone(&self) -> everything_plugin_os_winsock_sockaddr_in6
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 moreimpl Copy for everything_plugin_os_winsock_sockaddr_in6
Auto Trait Implementations§
impl Freeze for everything_plugin_os_winsock_sockaddr_in6
impl RefUnwindSafe for everything_plugin_os_winsock_sockaddr_in6
impl Send for everything_plugin_os_winsock_sockaddr_in6
impl Sync for everything_plugin_os_winsock_sockaddr_in6
impl Unpin for everything_plugin_os_winsock_sockaddr_in6
impl UnwindSafe for everything_plugin_os_winsock_sockaddr_in6
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more