Struct boring_sys::stack_st[][src]

#[repr(C)]pub struct stack_st {
    pub num: usize,
    pub data: *mut *mut c_void,
    pub sorted: c_int,
    pub num_alloc: usize,
    pub comp: stack_cmp_func,
}

Fields

num: usizedata: *mut *mut c_voidsorted: c_intnum_alloc: usizecomp: stack_cmp_func

Trait Implementations

impl Clone for stack_st[src]

impl Copy for stack_st[src]

impl Debug for stack_st[src]

impl Default for stack_st[src]

impl Eq for stack_st[src]

impl PartialEq<stack_st> for stack_st[src]

impl StructuralEq for stack_st[src]

impl StructuralPartialEq for stack_st[src]

Auto Trait Implementations

impl RefUnwindSafe for stack_st

impl !Send for stack_st

impl !Sync for stack_st

impl Unpin for stack_st

impl UnwindSafe for stack_st

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.