pub struct AppInfoResp<'a> {
pub name: &'a str,
pub version: &'a str,
pub flags: AppFlags,
}Expand description
Application information response APDU
Fields§
§name: &'a strApplication name
version: &'a strApplication version
flags: AppFlagsApplication flags
Implementations§
Trait Implementations§
Source§impl<'a> Debug for AppInfoResp<'a>
impl<'a> Debug for AppInfoResp<'a>
Source§impl<'a> Decode<'a> for AppInfoResp<'a>
impl<'a> Decode<'a> for AppInfoResp<'a>
Source§type Output = AppInfoResp<'a>
type Output = AppInfoResp<'a>
Output type (allows attaching lifetime bounds where required)
Source§impl<'a> Encode for AppInfoResp<'a>
impl<'a> Encode for AppInfoResp<'a>
Source§impl<'a> PartialEq for AppInfoResp<'a>
impl<'a> PartialEq for AppInfoResp<'a>
impl<'a> StructuralPartialEq for AppInfoResp<'a>
Auto Trait Implementations§
impl<'a> Freeze for AppInfoResp<'a>
impl<'a> RefUnwindSafe for AppInfoResp<'a>
impl<'a> Send for AppInfoResp<'a>
impl<'a> Sync for AppInfoResp<'a>
impl<'a> Unpin for AppInfoResp<'a>
impl<'a> UnwindSafe for AppInfoResp<'a>
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<'a, T> DecodeExt<'a> for Twhere
T: Decode<'a>,
impl<'a, T> DecodeExt<'a> for Twhere
T: Decode<'a>,
Source§fn decode_iter(buff: &'a [u8]) -> DecodeIter<'a, Self::Output>
fn decode_iter(buff: &'a [u8]) -> DecodeIter<'a, Self::Output>
Helper to iterate over decodable objects in a sized buffer. Read more