pub enum AuthorizationStatus {
NotDetermined,
Restricted,
Denied,
FullAccess,
WriteOnly,
}Expand description
Authorization status for reminders access
Variants§
NotDetermined
User has not yet made a choice
Restricted
Access restricted by system policy
Denied
User explicitly denied access
FullAccess
Full access granted
WriteOnly
Write-only access granted
Trait Implementations§
Source§impl Clone for AuthorizationStatus
impl Clone for AuthorizationStatus
Source§fn clone(&self) -> AuthorizationStatus
fn clone(&self) -> AuthorizationStatus
Returns a duplicate 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 moreSource§impl Debug for AuthorizationStatus
impl Debug for AuthorizationStatus
Source§impl Display for AuthorizationStatus
impl Display for AuthorizationStatus
Source§impl From<EKAuthorizationStatus> for AuthorizationStatus
impl From<EKAuthorizationStatus> for AuthorizationStatus
Source§fn from(status: EKAuthorizationStatus) -> Self
fn from(status: EKAuthorizationStatus) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AuthorizationStatus
impl PartialEq for AuthorizationStatus
impl Copy for AuthorizationStatus
impl Eq for AuthorizationStatus
impl StructuralPartialEq for AuthorizationStatus
Auto Trait Implementations§
impl Freeze for AuthorizationStatus
impl RefUnwindSafe for AuthorizationStatus
impl Send for AuthorizationStatus
impl Sync for AuthorizationStatus
impl Unpin for AuthorizationStatus
impl UnwindSafe for AuthorizationStatus
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