Struct otter_api_tests::imports::libc::group[]

#[repr(C)]
pub struct group { pub gr_name: *mut i8, pub gr_passwd: *mut i8, pub gr_gid: u32, pub gr_mem: *mut *mut i8, }

Fields

gr_name: *mut i8gr_passwd: *mut i8gr_gid: u32gr_mem: *mut *mut i8

Trait Implementations

impl Clone for group

impl Copy for group

impl Debug for group

impl Eq for group

impl<'_> From<&'_ group> for Group

impl Hash for group

impl PartialEq<group> for group

impl StructuralEq for group

impl StructuralPartialEq for group

Auto Trait Implementations

impl RefUnwindSafe for group

impl !Send for group

impl !Sync for group

impl Unpin for group

impl UnwindSafe for group

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> Downcast for T where
    T: Any

impl<A> DynCastExt for A

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,