Struct libc::addrinfo 
                   
                       [−]
                   
               [src]
pub struct addrinfo {
    pub ai_flags: c_int,
    pub ai_family: c_int,
    pub ai_socktype: c_int,
    pub ai_protocol: c_int,
    pub ai_addrlen: socklen_t,
    pub ai_addr: *mut sockaddr,
    pub ai_canonname: *mut c_char,
    pub ai_next: *mut addrinfo,
}Fields
ai_flags: c_int
                           ai_family: c_int
                           ai_socktype: c_int
                           ai_protocol: c_int
                           ai_addrlen: socklen_t
                           ai_addr: *mut sockaddr
                           ai_canonname: *mut c_char
                           ai_next: *mut addrinfo
                           Trait Implementations
impl Copy for addrinfo[src]
impl Clone for addrinfo[src]
fn clone(&self) -> addrinfo
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more