#[non_exhaustive]pub enum LAAccessControlOperation {
CreateItem,
UseItem,
CreateKey,
UseKeySign,
UseKeyDecrypt,
UseKeyKeyExchange,
}Expand description
Access-control operations supported by LAContext::evaluate_access_control_raw.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for LAAccessControlOperation
impl Clone for LAAccessControlOperation
Source§fn clone(&self) -> LAAccessControlOperation
fn clone(&self) -> LAAccessControlOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LAAccessControlOperation
impl Debug for LAAccessControlOperation
Source§impl Hash for LAAccessControlOperation
impl Hash for LAAccessControlOperation
Source§impl PartialEq for LAAccessControlOperation
impl PartialEq for LAAccessControlOperation
Source§fn eq(&self, other: &LAAccessControlOperation) -> bool
fn eq(&self, other: &LAAccessControlOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LAAccessControlOperation
impl Eq for LAAccessControlOperation
impl StructuralPartialEq for LAAccessControlOperation
Auto Trait Implementations§
impl Freeze for LAAccessControlOperation
impl RefUnwindSafe for LAAccessControlOperation
impl Send for LAAccessControlOperation
impl Sync for LAAccessControlOperation
impl Unpin for LAAccessControlOperation
impl UnsafeUnpin for LAAccessControlOperation
impl UnwindSafe for LAAccessControlOperation
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