#[repr(transparent)]pub struct KeyFilter(pub c_uint);Available on crate feature
napi-6 only.Expand description
Tuple Fields§
§0: c_uintImplementations§
Source§impl KeyFilter
impl KeyFilter
pub const ALL_PROPERTIES: KeyFilter
Available on crate feature
sys only.pub const WRITABLE: KeyFilter
Available on crate feature
sys only.pub const CONFIGURABLE: KeyFilter
Available on crate feature
sys only.pub const SKIP_STRINGS: KeyFilter
Available on crate feature
sys only.pub const SKIP_SYMBOLS: KeyFilter
Available on crate feature
sys only.Trait Implementations§
Source§impl BitAndAssign for KeyFilter
Available on crate feature sys only.
impl BitAndAssign for KeyFilter
Available on crate feature
sys only.Source§fn bitand_assign(&mut self, rhs: KeyFilter)
fn bitand_assign(&mut self, rhs: KeyFilter)
Performs the
&= operation. Read moreSource§impl BitOrAssign for KeyFilter
Available on crate feature sys only.
impl BitOrAssign for KeyFilter
Available on crate feature
sys only.Source§fn bitor_assign(&mut self, rhs: KeyFilter)
fn bitor_assign(&mut self, rhs: KeyFilter)
Performs the
|= operation. Read moreimpl Copy for KeyFilter
Available on crate feature
sys only.impl Eq for KeyFilter
Available on crate feature
sys only.impl StructuralPartialEq for KeyFilter
Available on crate feature
sys only.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