#[repr(C)]pub struct hostent {
    pub h_name: *mut c_char,
    pub h_aliases: *mut *mut c_char,
    pub h_addrtype: c_short,
    pub h_length: c_short,
    pub h_addr_list: *mut *mut c_char,
}Fields
h_name: *mut c_charh_aliases: *mut *mut c_charh_addrtype: c_shorth_length: c_shorth_addr_list: *mut *mut c_charTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for hostent
impl !Send for hostent
impl !Sync for hostent
impl Unpin for hostent
impl UnwindSafe for hostent
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