pub struct CcData {
pub process_cc_data_flag: bool,
pub triplets: Vec<CcTriplet>,
}Expand description
cc_data() — the DVB closed-caption carriage structure (Table B.9).
Fields§
§process_cc_data_flag: boolprocess_cc_data_flag — when true, the cc_data is to be processed.
triplets: Vec<CcTriplet>The caption constructs (cc_count is triplets.len()).
Implementations§
Trait Implementations§
impl Eq for CcData
Source§impl Serialize for CcData
impl Serialize for CcData
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 CcData
Auto Trait Implementations§
impl Freeze for CcData
impl RefUnwindSafe for CcData
impl Send for CcData
impl Sync for CcData
impl Unpin for CcData
impl UnsafeUnpin for CcData
impl UnwindSafe for CcData
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