#[repr(C)]pub struct ADDRINFOEXA {
pub ai_flags: c_int,
pub ai_family: c_int,
pub ai_socktype: c_int,
pub ai_protocol: c_int,
pub ai_addrlen: size_t,
pub ai_canonname: *mut c_char,
pub ai_addr: *mut SOCKADDR,
pub ai_blob: *mut c_void,
pub ai_bloblen: size_t,
pub ai_provider: LPGUID,
pub ai_next: *mut ADDRINFOEXA,
}
Fields
ai_flags: c_int
ai_family: c_int
ai_socktype: c_int
ai_protocol: c_int
ai_addrlen: size_t
ai_canonname: *mut c_char
ai_addr: *mut SOCKADDR
ai_blob: *mut c_void
ai_bloblen: size_t
ai_provider: LPGUID
ai_next: *mut ADDRINFOEXA
Trait Implementations
sourceimpl Clone for ADDRINFOEXA
impl Clone for ADDRINFOEXA
sourcefn clone(&self) -> ADDRINFOEXA
fn clone(&self) -> ADDRINFOEXA
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for ADDRINFOEXA
Auto Trait Implementations
impl RefUnwindSafe for ADDRINFOEXA
impl !Send for ADDRINFOEXA
impl !Sync for ADDRINFOEXA
impl Unpin for ADDRINFOEXA
impl UnwindSafe for ADDRINFOEXA
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more