#[non_exhaustive]pub enum ResourceManagerV2Apdu {
ProfileEnq(ProfileEnq),
ProfileReply(ProfileReply),
ProfileChanged(ProfileChanged),
ModuleIdSend(ModuleIdSend),
ModuleIdCommand(ModuleIdCommand),
}Expand description
Resource-scoped dispatch over the Resource Manager v2 objects (Tables 3-7).
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.
ProfileEnq(ProfileEnq)
profile_enq (9F 80 10).
ProfileReply(ProfileReply)
profile_reply (9F 80 11).
ProfileChanged(ProfileChanged)
profile_changed (9F 80 12).
ModuleIdSend(ModuleIdSend)
module_id_send (9F 80 13).
ModuleIdCommand(ModuleIdCommand)
module_id_command (9F 80 14).
Implementations§
Trait Implementations§
Source§impl Clone for ResourceManagerV2Apdu
impl Clone for ResourceManagerV2Apdu
Source§fn clone(&self) -> ResourceManagerV2Apdu
fn clone(&self) -> ResourceManagerV2Apdu
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 Debug for ResourceManagerV2Apdu
impl Debug for ResourceManagerV2Apdu
impl Eq for ResourceManagerV2Apdu
Source§impl PartialEq for ResourceManagerV2Apdu
impl PartialEq for ResourceManagerV2Apdu
Source§impl Serialize for ResourceManagerV2Apdu
Available on crate feature serde only.
impl Serialize for ResourceManagerV2Apdu
Available on crate feature
serde only.Source§impl Serialize for ResourceManagerV2Apdu
impl Serialize for ResourceManagerV2Apdu
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 ResourceManagerV2Apdu
Auto Trait Implementations§
impl Freeze for ResourceManagerV2Apdu
impl RefUnwindSafe for ResourceManagerV2Apdu
impl Send for ResourceManagerV2Apdu
impl Sync for ResourceManagerV2Apdu
impl Unpin for ResourceManagerV2Apdu
impl UnsafeUnpin for ResourceManagerV2Apdu
impl UnwindSafe for ResourceManagerV2Apdu
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