pub struct ApduCommand {
pub cla: u8,
pub ins: u8,
pub p1: u8,
pub p2: u8,
pub length: u8,
pub data: Vec<u8>,
}
Fields§
§cla: u8
§ins: u8
§p1: u8
§p2: u8
§length: u8
§data: Vec<u8>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ApduCommand
impl RefUnwindSafe for ApduCommand
impl Send for ApduCommand
impl Sync for ApduCommand
impl Unpin for ApduCommand
impl UnwindSafe for ApduCommand
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