#[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: OPENSSL_sk_cmp_func,
}
Fields§
§num: usize
§data: *mut *mut c_void
§sorted: c_int
§num_alloc: usize
§comp: OPENSSL_sk_cmp_func
Trait Implementations§
impl Copy for stack_st
impl Eq for stack_st
impl StructuralPartialEq for stack_st
Auto Trait Implementations§
impl Freeze for stack_st
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more