Struct Capability
pub struct Capability(/* private fields */);
Implementations§
§impl Capability
impl Capability
pub const NONE: Capability = _
pub const ASYNC: Capability = _
pub const FENCE: Capability = _
pub const UST: Capability = _
pub const ASYNC_MAY_TEAR: Capability = _
pub const SYNCOBJ: Capability = _
§impl Capability
impl Capability
pub fn contains(self, flag: impl Into<u8>) -> bool
pub fn contains(self, flag: impl Into<u8>) -> bool
Check if this object has all bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
pub fn intersects(self, flag: impl Into<u8>) -> bool
pub fn intersects(self, flag: impl Into<u8>) -> bool
Check if this object has some bits set that are also set in flag
.
flag
can be a single enum variant or a whole other mask.
pub fn remove(self, flags: impl Into<u8>) -> Capability
pub fn remove(self, flags: impl Into<u8>) -> Capability
Remove some flags.
All bits that are set in the given flags are removed from the self
instance, if
they are present.
Trait Implementations§
§impl BitAnd<u8> for Capability
impl BitAnd<u8> for Capability
§impl BitAnd for Capability
impl BitAnd for Capability
§type Output = Capability
type Output = Capability
The resulting type after applying the
&
operator.§fn bitand(self, other: Capability) -> <Capability as BitAnd>::Output
fn bitand(self, other: Capability) -> <Capability as BitAnd>::Output
Performs the
&
operation. Read more§impl BitAndAssign<u8> for Capability
impl BitAndAssign<u8> for Capability
§fn bitand_assign(&mut self, other: u8)
fn bitand_assign(&mut self, other: u8)
Performs the
&=
operation. Read more§impl BitAndAssign for Capability
impl BitAndAssign for Capability
§fn bitand_assign(&mut self, other: Capability)
fn bitand_assign(&mut self, other: Capability)
Performs the
&=
operation. Read more§impl BitOr<u8> for Capability
impl BitOr<u8> for Capability
§impl BitOr for Capability
impl BitOr for Capability
§type Output = Capability
type Output = Capability
The resulting type after applying the
|
operator.§fn bitor(self, other: Capability) -> <Capability as BitOr>::Output
fn bitor(self, other: Capability) -> <Capability as BitOr>::Output
Performs the
|
operation. Read more§impl BitOrAssign<u8> for Capability
impl BitOrAssign<u8> for Capability
§fn bitor_assign(&mut self, other: u8)
fn bitor_assign(&mut self, other: u8)
Performs the
|=
operation. Read more§impl BitOrAssign for Capability
impl BitOrAssign for Capability
§fn bitor_assign(&mut self, other: Capability)
fn bitor_assign(&mut self, other: Capability)
Performs the
|=
operation. Read more§impl Clone for Capability
impl Clone for Capability
§fn clone(&self) -> Capability
fn clone(&self) -> Capability
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for Capability
impl Debug for Capability
§impl Default for Capability
impl Default for Capability
§fn default() -> Capability
fn default() -> Capability
Returns the “default value” for a type. Read more
§impl From<u8> for Capability
impl From<u8> for Capability
§fn from(value: u8) -> Capability
fn from(value: u8) -> Capability
Converts to this type from the input type.
§impl Hash for Capability
impl Hash for Capability
§impl Ord for Capability
impl Ord for Capability
§impl PartialEq for Capability
impl PartialEq for Capability
§impl PartialOrd for Capability
impl PartialOrd for Capability
impl Copy for Capability
impl Eq for Capability
impl StructuralPartialEq for Capability
Auto Trait Implementations§
impl Freeze for Capability
impl RefUnwindSafe for Capability
impl Send for Capability
impl Sync for Capability
impl Unpin for Capability
impl UnwindSafe for Capability
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)