pub enum AndroidPermission {
Internet,
Camera,
RecordAudio,
WriteExternalStorage,
ReadExternalStorage,
WakeLock,
ForegroundService,
Custom(String),
}
Expand description
Android permission types
Variants§
Internet
Internet access
Camera
Camera access
RecordAudio
Microphone access
WriteExternalStorage
External storage
ReadExternalStorage
Read external storage
WakeLock
Wake lock
ForegroundService
Foreground service
Custom(String)
Custom permission
Trait Implementations§
Source§impl Clone for AndroidPermission
impl Clone for AndroidPermission
Source§fn clone(&self) -> AndroidPermission
fn clone(&self) -> AndroidPermission
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AndroidPermission
impl Debug for AndroidPermission
Source§impl Hash for AndroidPermission
impl Hash for AndroidPermission
Source§impl PartialEq for AndroidPermission
impl PartialEq for AndroidPermission
impl Eq for AndroidPermission
impl StructuralPartialEq for AndroidPermission
Auto Trait Implementations§
impl Freeze for AndroidPermission
impl RefUnwindSafe for AndroidPermission
impl Send for AndroidPermission
impl Sync for AndroidPermission
impl Unpin for AndroidPermission
impl UnwindSafe for AndroidPermission
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