pub struct CaPmtReply {
pub program_number: u16,
pub version_number: u8,
pub current_next_indicator: bool,
pub ca_enable: Option<CaEnable>,
pub streams: Vec<CaPmtReplyStream>,
}Expand description
ca_pmt_reply() object (Table 26).
Fields§
§program_number: u16program_number.
version_number: u85-bit version_number.
current_next_indicator: boolcurrent_next_indicator.
ca_enable: Option<CaEnable>Programme-level CA_enable — Some iff the programme CA_enable_flag bit
was set.
streams: Vec<CaPmtReplyStream>Per-ES entries in wire order.
Trait Implementations§
Source§impl<'a> ApduDef<'a> for CaPmtReply
impl<'a> ApduDef<'a> for CaPmtReply
Source§impl Clone for CaPmtReply
impl Clone for CaPmtReply
Source§fn clone(&self) -> CaPmtReply
fn clone(&self) -> CaPmtReply
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 CaPmtReply
impl Debug for CaPmtReply
impl Eq for CaPmtReply
Source§impl<'a> From<CaPmtReply> for AnyApdu<'a>
impl<'a> From<CaPmtReply> for AnyApdu<'a>
Source§fn from(v: CaPmtReply) -> Self
fn from(v: CaPmtReply) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for CaPmtReply
impl<'a> Parse<'a> for CaPmtReply
Source§impl PartialEq for CaPmtReply
impl PartialEq for CaPmtReply
Source§fn eq(&self, other: &CaPmtReply) -> bool
fn eq(&self, other: &CaPmtReply) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CaPmtReply
impl Serialize for CaPmtReply
Source§impl Serialize for CaPmtReply
impl Serialize for CaPmtReply
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 CaPmtReply
Auto Trait Implementations§
impl Freeze for CaPmtReply
impl RefUnwindSafe for CaPmtReply
impl Send for CaPmtReply
impl Sync for CaPmtReply
impl Unpin for CaPmtReply
impl UnsafeUnpin for CaPmtReply
impl UnwindSafe for CaPmtReply
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