pub struct VitcReaderConfig {
pub video_standard: VideoStandard,
pub frame_rate: FrameRate,
pub scan_lines: Vec<u16>,
pub field_preference: FieldPreference,
}Expand description
VITC reader configuration
Fields§
§video_standard: VideoStandardVideo standard
frame_rate: FrameRateFrame rate
scan_lines: Vec<u16>Scan lines to read (typically 10-20)
field_preference: FieldPreferenceField preference (F1, F2, or both)
Trait Implementations§
Source§impl Clone for VitcReaderConfig
impl Clone for VitcReaderConfig
Source§fn clone(&self) -> VitcReaderConfig
fn clone(&self) -> VitcReaderConfig
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 VitcReaderConfig
impl Debug for VitcReaderConfig
Auto Trait Implementations§
impl Freeze for VitcReaderConfig
impl RefUnwindSafe for VitcReaderConfig
impl Send for VitcReaderConfig
impl Sync for VitcReaderConfig
impl Unpin for VitcReaderConfig
impl UnsafeUnpin for VitcReaderConfig
impl UnwindSafe for VitcReaderConfig
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