pub type CrossCompartmentSecurityWrapper = SecurityWrapper<CrossCompartmentWrapper>;

Aliased Type§

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

Fields§

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

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>