pub struct DownloadReply {
pub object_id: u16,
pub reply_id: DownloadReplyId,
}Expand description
download_reply() object (Table 45): object_id + download_reply_id.
Fields§
§object_id: u16object_id — the offending object (0xFFFF for “not an object segment”).
reply_id: DownloadReplyIddownload_reply_id.
Trait Implementations§
Source§impl ApduDef<'_> for DownloadReply
impl ApduDef<'_> for DownloadReply
Source§impl Clone for DownloadReply
impl Clone for DownloadReply
Source§fn clone(&self) -> DownloadReply
fn clone(&self) -> DownloadReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DownloadReply
Source§impl Debug for DownloadReply
impl Debug for DownloadReply
impl Eq for DownloadReply
Source§impl<'a> From<DownloadReply> for AnyApdu<'a>
impl<'a> From<DownloadReply> for AnyApdu<'a>
Source§fn from(v: DownloadReply) -> Self
fn from(v: DownloadReply) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for DownloadReply
impl<'a> Parse<'a> for DownloadReply
Source§impl PartialEq for DownloadReply
impl PartialEq for DownloadReply
Source§impl Serialize for DownloadReply
impl Serialize for DownloadReply
Source§impl Serialize for DownloadReply
impl Serialize for DownloadReply
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for DownloadReply
Auto Trait Implementations§
impl Freeze for DownloadReply
impl RefUnwindSafe for DownloadReply
impl Send for DownloadReply
impl Sync for DownloadReply
impl Unpin for DownloadReply
impl UnsafeUnpin for DownloadReply
impl UnwindSafe for DownloadReply
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