pub struct PlatformIdentifiers {
pub android: Option<ConstStr>,
pub ios: Option<ConstStr>,
pub macos: Option<ConstStr>,
}Expand description
Platform-specific permission identifiers
Fields§
§android: Option<ConstStr>§ios: Option<ConstStr>§macos: Option<ConstStr>Trait Implementations§
Source§impl Clone for PlatformIdentifiers
impl Clone for PlatformIdentifiers
Source§fn clone(&self) -> PlatformIdentifiers
fn clone(&self) -> PlatformIdentifiers
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 PlatformIdentifiers
impl Debug for PlatformIdentifiers
Source§impl Hash for PlatformIdentifiers
impl Hash for PlatformIdentifiers
Source§impl PartialEq for PlatformIdentifiers
impl PartialEq for PlatformIdentifiers
Source§fn eq(&self, other: &PlatformIdentifiers) -> bool
fn eq(&self, other: &PlatformIdentifiers) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PlatformIdentifiers
impl StructuralPartialEq for PlatformIdentifiers
Auto Trait Implementations§
impl Freeze for PlatformIdentifiers
impl RefUnwindSafe for PlatformIdentifiers
impl Send for PlatformIdentifiers
impl Sync for PlatformIdentifiers
impl Unpin for PlatformIdentifiers
impl UnsafeUnpin for PlatformIdentifiers
impl UnwindSafe for PlatformIdentifiers
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