pub type SecurityWrapper_Restrictive<Base> = SecurityWrapper<Base>;

Aliased Type§

struct SecurityWrapper_Restrictive<Base> {
    pub vtable_: *const SecurityWrapper__bindgen_vtable,
    pub _base: Base,
    pub _phantom_0: PhantomData<UnsafeCell<Base>>,
}

Fields§

§vtable_: *const SecurityWrapper__bindgen_vtable§_base: Base§_phantom_0: PhantomData<UnsafeCell<Base>>

Trait Implementations§

source§

impl<Base> Clone for SecurityWrapper<Base>where Base: Clone,

source§

fn clone(&self) -> SecurityWrapper<Base>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Base> Debug for SecurityWrapper<Base>where Base: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<Base> PartialEq<SecurityWrapper<Base>> for SecurityWrapper<Base>where Base: PartialEq<Base>,

source§

fn eq(&self, other: &SecurityWrapper<Base>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Base> Copy for SecurityWrapper<Base>where Base: Copy,

source§

impl<Base> StructuralPartialEq for SecurityWrapper<Base>