[][src]Struct gdnative_common::libc::addrinfo

#[repr(C)]
pub struct addrinfo {
    pub ai_flags: i32,
    pub ai_family: i32,
    pub ai_socktype: i32,
    pub ai_protocol: i32,
    pub ai_addrlen: u32,
    pub ai_addr: *mut sockaddr,
    pub ai_canonname: *mut i8,
    pub ai_next: *mut addrinfo,
}

Fields

ai_flags: i32ai_family: i32ai_socktype: i32ai_protocol: i32ai_addrlen: u32ai_addr: *mut sockaddrai_canonname: *mut i8ai_next: *mut addrinfo

Trait Implementations

impl Clone for addrinfo[src]

impl Copy for addrinfo[src]

Auto Trait Implementations

impl RefUnwindSafe for addrinfo

impl !Send for addrinfo

impl !Sync for addrinfo

impl Unpin for addrinfo

impl UnwindSafe for addrinfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.