pub struct NfcAppServices {
pub nfc_readersession_felica_systemcodes: Option<Vec<String>>,
pub nfc_readersession_iso7816_select_identifiers: Option<Vec<String>>,
}Expand description
NFC
Fields§
§nfc_readersession_felica_systemcodes: Option<Vec<String>>A list of FeliCa system codes that the app supports.
Each system code must be a discrete value. The wild card value (0xFF) isn’t allowed.
§Availability
- iOS 13.0+
§Framework
- Core NFC
nfc_readersession_iso7816_select_identifiers: Option<Vec<String>>A list of application identifiers that the app supports.
§Availability
- iOS 13.0+
§Framework
- Core NFC
Trait Implementations§
Source§impl Clone for NfcAppServices
impl Clone for NfcAppServices
Source§fn clone(&self) -> NfcAppServices
fn clone(&self) -> NfcAppServices
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 NfcAppServices
impl Debug for NfcAppServices
Source§impl Default for NfcAppServices
impl Default for NfcAppServices
Source§fn default() -> NfcAppServices
fn default() -> NfcAppServices
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NfcAppServices
impl<'de> Deserialize<'de> for NfcAppServices
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NfcAppServices
impl PartialEq for NfcAppServices
Source§impl Serialize for NfcAppServices
impl Serialize for NfcAppServices
impl Eq for NfcAppServices
impl StructuralPartialEq for NfcAppServices
Auto Trait Implementations§
impl Freeze for NfcAppServices
impl RefUnwindSafe for NfcAppServices
impl Send for NfcAppServices
impl Sync for NfcAppServices
impl Unpin for NfcAppServices
impl UnwindSafe for NfcAppServices
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.