pub struct CcTriplet {
pub cc_valid: bool,
pub cc_type: CcType,
pub cc_data_1: u8,
pub cc_data_2: u8,
}Expand description
One closed-caption construct (the per-cc_count loop entry of Table B.9).
Fields§
§cc_valid: boolcc_valid — the two caption bytes are valid.
cc_type: CcTypecc_type — type of the caption byte pair.
cc_data_1: u8cc_data_1 — first caption byte (contents per CEA-708-E).
cc_data_2: u8cc_data_2 — second caption byte.
Trait Implementations§
impl Copy for CcTriplet
impl Eq for CcTriplet
impl StructuralPartialEq for CcTriplet
Auto Trait Implementations§
impl Freeze for CcTriplet
impl RefUnwindSafe for CcTriplet
impl Send for CcTriplet
impl Sync for CcTriplet
impl Unpin for CcTriplet
impl UnsafeUnpin for CcTriplet
impl UnwindSafe for CcTriplet
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