#[non_exhaustive]pub enum ContentTimeBaseIndicator {
None,
Stc,
Npt,
Reserved(u8),
Private(u8),
}Expand description
Content_time_base_indicator values (Table 2-85).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
0 — No content time base defined in this descriptor.
Stc
1 — STC (System Time Clock).
Npt
2 — NPT (Normal Play Time).
Reserved(u8)
3–7 — Reserved.
Private(u8)
8–15 — Privately defined.
Implementations§
Trait Implementations§
Source§impl Clone for ContentTimeBaseIndicator
impl Clone for ContentTimeBaseIndicator
Source§fn clone(&self) -> ContentTimeBaseIndicator
fn clone(&self) -> ContentTimeBaseIndicator
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 moreimpl Copy for ContentTimeBaseIndicator
Source§impl Debug for ContentTimeBaseIndicator
impl Debug for ContentTimeBaseIndicator
Source§impl Display for ContentTimeBaseIndicator
impl Display for ContentTimeBaseIndicator
impl Eq for ContentTimeBaseIndicator
Source§impl PartialEq for ContentTimeBaseIndicator
impl PartialEq for ContentTimeBaseIndicator
Source§fn eq(&self, other: &ContentTimeBaseIndicator) -> bool
fn eq(&self, other: &ContentTimeBaseIndicator) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContentTimeBaseIndicator
impl Serialize for ContentTimeBaseIndicator
impl StructuralPartialEq for ContentTimeBaseIndicator
Auto Trait Implementations§
impl Freeze for ContentTimeBaseIndicator
impl RefUnwindSafe for ContentTimeBaseIndicator
impl Send for ContentTimeBaseIndicator
impl Sync for ContentTimeBaseIndicator
impl Unpin for ContentTimeBaseIndicator
impl UnsafeUnpin for ContentTimeBaseIndicator
impl UnwindSafe for ContentTimeBaseIndicator
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