[][src]Struct boring_sys::_STACK

#[repr(C)]pub struct _STACK {
    pub num: size_t,
    pub data: *mut *mut c_void,
    pub sorted: c_int,
    pub num_alloc: size_t,
    pub comp: Option<unsafe extern "C" fn(_: *mut *const c_void, _: *mut *const c_void) -> c_int>,
}

Fields

num: size_tdata: *mut *mut c_voidsorted: c_intnum_alloc: size_tcomp: Option<unsafe extern "C" fn(_: *mut *const c_void, _: *mut *const c_void) -> c_int>

Auto Trait Implementations

impl RefUnwindSafe for _STACK

impl !Send for _STACK

impl !Sync for _STACK

impl Unpin for _STACK

impl UnwindSafe for _STACK

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, 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.