pub enum AuthenticationData<'a> {
Od(EventAuthenticationOd<'a>),
TouchId(EventAuthenticationTouchId<'a>),
Token(EventAuthenticationToken<'a>),
AutoUnlock(EventAuthenticationAutoUnlock<'a>),
}Available on crate feature
macos_13_0_0 and macOS only.Expand description
Variants§
Od(EventAuthenticationOd<'a>)
Wrapped [es_event_authentication_t_anon_0.od]
TouchId(EventAuthenticationTouchId<'a>)
Wrapped [es_event_authentication_t_anon_0.touchid]
Token(EventAuthenticationToken<'a>)
Wrapped [es_event_authentication_t_anon_0.token]
AutoUnlock(EventAuthenticationAutoUnlock<'a>)
Wrapped [es_event_authentication_t_anon_0.auto_unlock]
Trait Implementations§
Source§impl<'a> Debug for AuthenticationData<'a>
impl<'a> Debug for AuthenticationData<'a>
Source§impl<'a> Hash for AuthenticationData<'a>
impl<'a> Hash for AuthenticationData<'a>
Source§impl<'a> PartialEq for AuthenticationData<'a>
impl<'a> PartialEq for AuthenticationData<'a>
Source§fn eq(&self, other: &AuthenticationData<'a>) -> bool
fn eq(&self, other: &AuthenticationData<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Eq for AuthenticationData<'a>
impl<'a> StructuralPartialEq for AuthenticationData<'a>
Auto Trait Implementations§
impl<'a> Freeze for AuthenticationData<'a>
impl<'a> RefUnwindSafe for AuthenticationData<'a>
impl<'a> Send for AuthenticationData<'a>
impl<'a> !Sync for AuthenticationData<'a>
impl<'a> Unpin for AuthenticationData<'a>
impl<'a> UnwindSafe for AuthenticationData<'a>
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