pub struct CcPinReply {
pub lts_id: Option<u8>,
pub pincode_status: u8,
}Expand description
cc_PIN_reply() (Table 7): CICAM → Host. Extended for the record-start
protocol to optionally carry LTS_id.
Fields§
§lts_id: Option<u8>LTS_id (8) when LTS_bound_flag == 1; None (the else reserved(8)
branch) when the reply is not associated with a Local TS.
pincode_status: u8PINcode_status_field (8) — semantics in CI Plus V1.3 [3] §11.3.2.3
(proprietary, carried verbatim).
Trait Implementations§
Source§impl Clone for CcPinReply
impl Clone for CcPinReply
Source§fn clone(&self) -> CcPinReply
fn clone(&self) -> CcPinReply
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 CcPinReply
Source§impl Debug for CcPinReply
impl Debug for CcPinReply
impl Eq for CcPinReply
Source§impl<'a> Parse<'a> for CcPinReply
impl<'a> Parse<'a> for CcPinReply
Source§impl PartialEq for CcPinReply
impl PartialEq for CcPinReply
Source§impl Serialize for CcPinReply
Available on crate feature serde only.
impl Serialize for CcPinReply
Available on crate feature
serde only.Source§impl Serialize for CcPinReply
impl Serialize for CcPinReply
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 CcPinReply
Auto Trait Implementations§
impl Freeze for CcPinReply
impl RefUnwindSafe for CcPinReply
impl Send for CcPinReply
impl Sync for CcPinReply
impl Unpin for CcPinReply
impl UnsafeUnpin for CcPinReply
impl UnwindSafe for CcPinReply
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