Struct sgx_types::types::MiscSelect
source · [−]#[repr(C)]pub struct MiscSelect(_);
Implementations
sourceimpl MiscSelect
impl MiscSelect
pub const EXINFO: MiscSelect = _
pub const CPINFO: MiscSelect = _
pub const fn empty() -> MiscSelect
pub const fn all() -> MiscSelect
pub const fn bits(&self) -> u32
pub fn from_bits(bits: u32) -> Option<MiscSelect>
pub const fn from_bits_truncate(bits: u32) -> MiscSelect
sourcepub const unsafe fn from_bits_unchecked(bits: u32) -> MiscSelect
pub const unsafe fn from_bits_unchecked(bits: u32) -> MiscSelect
pub const fn is_empty(&self) -> bool
pub const fn is_all(&self) -> bool
pub const fn contains(&self, other: MiscSelect) -> bool
pub const fn intersects(&self, other: MiscSelect) -> bool
pub fn insert(&mut self, other: MiscSelect)
pub fn remove(&mut self, other: MiscSelect)
pub fn toggle(&mut self, other: MiscSelect)
Trait Implementations
sourceimpl BitAnd<MiscSelect> for MiscSelect
impl BitAnd<MiscSelect> for MiscSelect
type Output = MiscSelect
type Output = MiscSelect
The resulting type after applying the
&
operator.sourcefn bitand(self, rhs: MiscSelect) -> MiscSelect
fn bitand(self, rhs: MiscSelect) -> MiscSelect
Performs the
&
operation. Read moresourceimpl BitAndAssign<MiscSelect> for MiscSelect
impl BitAndAssign<MiscSelect> for MiscSelect
sourcefn bitand_assign(&mut self, rhs: MiscSelect)
fn bitand_assign(&mut self, rhs: MiscSelect)
Performs the
&=
operation. Read moresourceimpl BitOr<MiscSelect> for MiscSelect
impl BitOr<MiscSelect> for MiscSelect
type Output = MiscSelect
type Output = MiscSelect
The resulting type after applying the
|
operator.sourcefn bitor(self, rhs: MiscSelect) -> MiscSelect
fn bitor(self, rhs: MiscSelect) -> MiscSelect
Performs the
|
operation. Read moresourceimpl BitOrAssign<MiscSelect> for MiscSelect
impl BitOrAssign<MiscSelect> for MiscSelect
sourcefn bitor_assign(&mut self, rhs: MiscSelect)
fn bitor_assign(&mut self, rhs: MiscSelect)
Performs the
|=
operation. Read moresourceimpl BitXor<MiscSelect> for MiscSelect
impl BitXor<MiscSelect> for MiscSelect
type Output = MiscSelect
type Output = MiscSelect
The resulting type after applying the
^
operator.sourcefn bitxor(self, rhs: MiscSelect) -> MiscSelect
fn bitxor(self, rhs: MiscSelect) -> MiscSelect
Performs the
^
operation. Read moresourceimpl BitXorAssign<MiscSelect> for MiscSelect
impl BitXorAssign<MiscSelect> for MiscSelect
sourcefn bitxor_assign(&mut self, rhs: MiscSelect)
fn bitxor_assign(&mut self, rhs: MiscSelect)
Performs the
^=
operation. Read moresourceimpl Clone for MiscSelect
impl Clone for MiscSelect
sourcefn clone(&self) -> MiscSelect
fn clone(&self) -> MiscSelect
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MiscSelect
impl Debug for MiscSelect
sourceimpl Default for MiscSelect
impl Default for MiscSelect
sourceimpl Not for MiscSelect
impl Not for MiscSelect
type Output = MiscSelect
type Output = MiscSelect
The resulting type after applying the
!
operator.sourcefn not(self) -> MiscSelect
fn not(self) -> MiscSelect
Performs the unary
!
operation. Read moresourceimpl PartialEq<MiscSelect> for MiscSelect
impl PartialEq<MiscSelect> for MiscSelect
sourcefn eq(&self, other: &MiscSelect) -> bool
fn eq(&self, other: &MiscSelect) -> bool
sourceimpl Sub<MiscSelect> for MiscSelect
impl Sub<MiscSelect> for MiscSelect
type Output = MiscSelect
type Output = MiscSelect
The resulting type after applying the
-
operator.sourcefn sub(self, rhs: MiscSelect) -> MiscSelect
fn sub(self, rhs: MiscSelect) -> MiscSelect
Performs the
-
operation. Read moresourceimpl SubAssign<MiscSelect> for MiscSelect
impl SubAssign<MiscSelect> for MiscSelect
sourcefn sub_assign(&mut self, rhs: MiscSelect)
fn sub_assign(&mut self, rhs: MiscSelect)
Performs the
-=
operation. Read moreimpl ContiguousMemory for MiscSelect
impl Copy for MiscSelect
impl Eq for MiscSelect
impl StructuralEq for MiscSelect
impl StructuralPartialEq for MiscSelect
Auto Trait Implementations
impl RefUnwindSafe for MiscSelect
impl Send for MiscSelect
impl Sync for MiscSelect
impl Unpin for MiscSelect
impl UnwindSafe for MiscSelect
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more