pub trait NfcTag {
    fn authenticate(
        &mut self,
        nfc_device: &NfcDevice<'_>,
        realm: &mut Realm
    ) -> Result<String, NfcError>; }

Required Methods

Implementors