pub struct SceneDoneMessage {
pub decoder_continue_flag: bool,
pub scene_reveal_flag: bool,
pub scene_tag: u8,
}Expand description
scene_done_message() object (Table 41): decoder’s display-set completion.
Per Table 41 the reserved field here is 2 bits (vs. 1 bit in
scene_end_mark), keeping the body byte-aligned without send_scene_done.
Fields§
§decoder_continue_flag: booldecoder_continue_flag — duplicates the causing scene end mark.
scene_reveal_flag: boolscene_reveal_flag — duplicates the causing scene end mark.
scene_tag: u84-bit scene_tag — duplicates the causing scene end mark.
Trait Implementations§
Source§impl ApduDef<'_> for SceneDoneMessage
impl ApduDef<'_> for SceneDoneMessage
Source§impl Clone for SceneDoneMessage
impl Clone for SceneDoneMessage
Source§fn clone(&self) -> SceneDoneMessage
fn clone(&self) -> SceneDoneMessage
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 SceneDoneMessage
Source§impl Debug for SceneDoneMessage
impl Debug for SceneDoneMessage
impl Eq for SceneDoneMessage
Source§impl<'a> From<SceneDoneMessage> for AnyApdu<'a>
impl<'a> From<SceneDoneMessage> for AnyApdu<'a>
Source§fn from(v: SceneDoneMessage) -> Self
fn from(v: SceneDoneMessage) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for SceneDoneMessage
impl<'a> Parse<'a> for SceneDoneMessage
Source§impl PartialEq for SceneDoneMessage
impl PartialEq for SceneDoneMessage
Source§impl Serialize for SceneDoneMessage
Available on crate feature serde only.
impl Serialize for SceneDoneMessage
Available on crate feature
serde only.Source§impl Serialize for SceneDoneMessage
impl Serialize for SceneDoneMessage
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 SceneDoneMessage
Auto Trait Implementations§
impl Freeze for SceneDoneMessage
impl RefUnwindSafe for SceneDoneMessage
impl Send for SceneDoneMessage
impl Sync for SceneDoneMessage
impl Unpin for SceneDoneMessage
impl UnsafeUnpin for SceneDoneMessage
impl UnwindSafe for SceneDoneMessage
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