pub struct CcPinEvent {
pub lts_id: u8,
pub program_number: u16,
pub pincode_status: u8,
pub rating: u8,
pub pin_event_time_utc: u64,
pub pin_event_time_centiseconds: u8,
pub private_data: [u8; 15],
}Expand description
cc_PIN_event() (Table 8): CICAM → Host. Extended for the record-start
protocol to include LTS_id. The field meanings (other than LTS_id) are in
CI Plus V1.3 [3] §11.3.2.4 (proprietary) and carried verbatim.
Fields§
§lts_id: u8LTS_id (8) — Local TS identifier.
program_number: u16program_number (16).
pincode_status: u8PINcode_status_field (8).
rating: u8rating (8).
pin_event_time_utc: u64pin_event_time_utc (40) — held in the low 5 bytes of the u64.
pin_event_time_centiseconds: u8pin_event_time_centiseconds (8).
private_data: [u8; 15]private_data (8x15 = 15 bytes).
Trait Implementations§
Source§impl Clone for CcPinEvent
impl Clone for CcPinEvent
Source§fn clone(&self) -> CcPinEvent
fn clone(&self) -> CcPinEvent
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 CcPinEvent
Source§impl Debug for CcPinEvent
impl Debug for CcPinEvent
impl Eq for CcPinEvent
Source§impl<'a> Parse<'a> for CcPinEvent
impl<'a> Parse<'a> for CcPinEvent
Source§impl PartialEq for CcPinEvent
impl PartialEq for CcPinEvent
Source§fn eq(&self, other: &CcPinEvent) -> bool
fn eq(&self, other: &CcPinEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CcPinEvent
impl Serialize for CcPinEvent
Source§impl Serialize for CcPinEvent
impl Serialize for CcPinEvent
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 CcPinEvent
Auto Trait Implementations§
impl Freeze for CcPinEvent
impl RefUnwindSafe for CcPinEvent
impl Send for CcPinEvent
impl Sync for CcPinEvent
impl Unpin for CcPinEvent
impl UnsafeUnpin for CcPinEvent
impl UnwindSafe for CcPinEvent
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