pub struct CiplusKeyIdentifierDescriptor<'a> {
pub key_id_data: &'a [u8],
}Expand description
ciplus_key_identifier_descriptor() (Table 47): the content key identifier
associated with the following Sample. The key-id bytes are an opaque blob.
Fields§
§key_id_data: &'a [u8]key_id_data_byte sequence (length = descriptor_length).
Trait Implementations§
Source§impl<'a> Clone for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Clone for CiplusKeyIdentifierDescriptor<'a>
Source§fn clone(&self) -> CiplusKeyIdentifierDescriptor<'a>
fn clone(&self) -> CiplusKeyIdentifierDescriptor<'a>
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<'a> Debug for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Debug for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Eq for CiplusKeyIdentifierDescriptor<'a>
Source§impl<'a> Parse<'a> for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Parse<'a> for CiplusKeyIdentifierDescriptor<'a>
Source§impl<'a> PartialEq for CiplusKeyIdentifierDescriptor<'a>
impl<'a> PartialEq for CiplusKeyIdentifierDescriptor<'a>
Source§fn eq(&self, other: &CiplusKeyIdentifierDescriptor<'a>) -> bool
fn eq(&self, other: &CiplusKeyIdentifierDescriptor<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Serialize for CiplusKeyIdentifierDescriptor<'a>
Source§impl Serialize for CiplusKeyIdentifierDescriptor<'_>
impl Serialize for CiplusKeyIdentifierDescriptor<'_>
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<'a> StructuralPartialEq for CiplusKeyIdentifierDescriptor<'a>
Auto Trait Implementations§
impl<'a> Freeze for CiplusKeyIdentifierDescriptor<'a>
impl<'a> RefUnwindSafe for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Send for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Sync for CiplusKeyIdentifierDescriptor<'a>
impl<'a> Unpin for CiplusKeyIdentifierDescriptor<'a>
impl<'a> UnsafeUnpin for CiplusKeyIdentifierDescriptor<'a>
impl<'a> UnwindSafe for CiplusKeyIdentifierDescriptor<'a>
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