#[non_exhaustive]#[repr(u32)]pub enum TimeCodeType {
T24fps = 1,
T25fps = 2,
T30fps = 3,
T50fps = 4,
T60fps = 5,
}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.
Trait Implementations§
Source§impl AsRef<u32> for TimeCodeType
impl AsRef<u32> for TimeCodeType
Source§impl Clone for TimeCodeType
impl Clone for TimeCodeType
Source§fn clone(&self) -> TimeCodeType
fn clone(&self) -> TimeCodeType
Returns a duplicate of the value. Read more
1.0.0 · 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 TimeCodeType
impl Debug for TimeCodeType
Source§impl Deref for TimeCodeType
impl Deref for TimeCodeType
Source§impl Display for TimeCodeType
impl Display for TimeCodeType
Source§impl From<TimeCodeType> for u32
impl From<TimeCodeType> for u32
Source§fn from(data: TimeCodeType) -> Self
fn from(data: TimeCodeType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TimeCodeType
impl PartialEq for TimeCodeType
Source§impl TryFrom<u32> for TimeCodeType
impl TryFrom<u32> for TimeCodeType
impl Copy for TimeCodeType
impl Eq for TimeCodeType
impl StructuralPartialEq for TimeCodeType
Auto Trait Implementations§
impl Freeze for TimeCodeType
impl RefUnwindSafe for TimeCodeType
impl Send for TimeCodeType
impl Sync for TimeCodeType
impl Unpin for TimeCodeType
impl UnwindSafe for TimeCodeType
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