#[non_exhaustive]pub enum StreamInputApdu<'a> {
DeliverySystemInfoReq(DeliverySystemInfoReq),
DeliverySystemInfoAck(DeliverySystemInfoAck),
ScanStartReq(ScanStartReq),
ScanNextReq(ScanNextReq),
ScanAck(ScanAck<'a>),
TuneTSReq(TuneTSReq<'a>),
TuneTSAck(TuneTSAck),
}Expand description
Resource-scoped dispatch over the StreamInput objects (Tables 13-20).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DeliverySystemInfoReq(DeliverySystemInfoReq)
DeliverySystemInfoReq (9F 80 00).
DeliverySystemInfoAck(DeliverySystemInfoAck)
DeliverySystemInfoAck (9F 80 01).
ScanStartReq(ScanStartReq)
ScanStartReq (9F 80 02).
ScanNextReq(ScanNextReq)
ScanNextReq (9F 80 03).
ScanAck(ScanAck<'a>)
ScanAck (9F 80 04).
TuneTSReq(TuneTSReq<'a>)
TuneTSReq (9F 80 05).
TuneTSAck(TuneTSAck)
TuneTSAck (9F 80 06).
Implementations§
Trait Implementations§
Source§impl<'a> Clone for StreamInputApdu<'a>
impl<'a> Clone for StreamInputApdu<'a>
Source§fn clone(&self) -> StreamInputApdu<'a>
fn clone(&self) -> StreamInputApdu<'a>
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 moreSource§impl<'a> Debug for StreamInputApdu<'a>
impl<'a> Debug for StreamInputApdu<'a>
impl<'a> Eq for StreamInputApdu<'a>
Source§impl<'a> PartialEq for StreamInputApdu<'a>
impl<'a> PartialEq for StreamInputApdu<'a>
Source§impl<'a> Serialize for StreamInputApdu<'a>
Available on crate feature serde only.
impl<'a> Serialize for StreamInputApdu<'a>
Available on crate feature
serde only.Source§impl Serialize for StreamInputApdu<'_>
impl Serialize for StreamInputApdu<'_>
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<'a> StructuralPartialEq for StreamInputApdu<'a>
Auto Trait Implementations§
impl<'a> Freeze for StreamInputApdu<'a>
impl<'a> RefUnwindSafe for StreamInputApdu<'a>
impl<'a> Send for StreamInputApdu<'a>
impl<'a> Sync for StreamInputApdu<'a>
impl<'a> Unpin for StreamInputApdu<'a>
impl<'a> UnsafeUnpin for StreamInputApdu<'a>
impl<'a> UnwindSafe for StreamInputApdu<'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