MFRC522Debug

Trait MFRC522Debug 

Source
pub trait MFRC522Debug {
    // Required methods
    async fn debug_dump_card(&mut self, uid: &Uid) -> Result<(), PCDErrorCode>;
    async fn debug_dump_card_memory(
        &mut self,
        uid: &Uid,
    ) -> Result<(), PCDErrorCode>;
    async fn debug_dump_card_details(
        &mut self,
        uid: &Uid,
    ) -> Result<(), PCDErrorCode>;
}

Required Methods§

Source

async fn debug_dump_card(&mut self, uid: &Uid) -> Result<(), PCDErrorCode>

Source

async fn debug_dump_card_memory( &mut self, uid: &Uid, ) -> Result<(), PCDErrorCode>

Source

async fn debug_dump_card_details( &mut self, uid: &Uid, ) -> Result<(), PCDErrorCode>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§