#[repr(transparent)]pub struct KeyFilter(pub c_uint);Available on crate features
sys and napi-6 only.Expand description
Tuple Fields§
§0: c_uintImplementations§
Source§impl KeyFilter
impl KeyFilter
pub const ALL_PROPERTIES: KeyFilter = _
pub const WRITABLE: KeyFilter = _
pub const CONFIGURABLE: KeyFilter = _
pub const SKIP_STRINGS: KeyFilter = _
pub const SKIP_SYMBOLS: KeyFilter = _
Trait Implementations§
Source§impl BitAndAssign for KeyFilter
impl BitAndAssign for KeyFilter
Source§fn bitand_assign(&mut self, rhs: KeyFilter)
fn bitand_assign(&mut self, rhs: KeyFilter)
Performs the
&= operation. Read moreSource§impl BitOrAssign for KeyFilter
impl BitOrAssign for KeyFilter
Source§fn bitor_assign(&mut self, rhs: KeyFilter)
fn bitor_assign(&mut self, rhs: KeyFilter)
Performs the
|= operation. Read moreimpl Copy for KeyFilter
impl Eq for KeyFilter
impl StructuralPartialEq for KeyFilter
Auto Trait Implementations§
impl Freeze for KeyFilter
impl RefUnwindSafe for KeyFilter
impl Send for KeyFilter
impl Sync for KeyFilter
impl Unpin for KeyFilter
impl UnwindSafe for KeyFilter
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more