pub struct SdInfoReply {
pub drm_system_ids: Vec<u16>,
pub drm_uuids: Vec<[u8; 16]>,
}Expand description
sd_info_reply() (Table 32): CICAM → Host. Lists drm_system_ids and DRM
UUIDs the CICAM supports for Sample decryption.
Fields§
§drm_system_ids: Vec<u16>drm_system_id list (loop count number_of_drm_system_id). Values are the
same as ca_system_id per the DVB allocation [11].
drm_uuids: Vec<[u8; 16]>drm_uuid list (loop count number_of_drm_uuid), each 128 bits.
Trait Implementations§
Source§impl Clone for SdInfoReply
impl Clone for SdInfoReply
Source§fn clone(&self) -> SdInfoReply
fn clone(&self) -> SdInfoReply
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 SdInfoReply
impl Debug for SdInfoReply
impl Eq for SdInfoReply
Source§impl<'a> Parse<'a> for SdInfoReply
impl<'a> Parse<'a> for SdInfoReply
Source§impl PartialEq for SdInfoReply
impl PartialEq for SdInfoReply
Source§impl Serialize for SdInfoReply
Available on crate feature serde only.
impl Serialize for SdInfoReply
Available on crate feature
serde only.Source§impl Serialize for SdInfoReply
impl Serialize for SdInfoReply
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 SdInfoReply
Auto Trait Implementations§
impl Freeze for SdInfoReply
impl RefUnwindSafe for SdInfoReply
impl Send for SdInfoReply
impl Sync for SdInfoReply
impl Unpin for SdInfoReply
impl UnsafeUnpin for SdInfoReply
impl UnwindSafe for SdInfoReply
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