pub struct VitcWriterConfig {
pub video_standard: VideoStandard,
pub frame_rate: FrameRate,
pub scan_lines: Vec<u16>,
pub both_fields: bool,
}Expand description
VITC writer configuration
Fields§
§video_standard: VideoStandardVideo standard
frame_rate: FrameRateFrame rate
scan_lines: Vec<u16>Scan lines to write (typically 19 and 21 for PAL)
both_fields: boolWrite to both fields
Trait Implementations§
Source§impl Clone for VitcWriterConfig
impl Clone for VitcWriterConfig
Source§fn clone(&self) -> VitcWriterConfig
fn clone(&self) -> VitcWriterConfig
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 VitcWriterConfig
impl Debug for VitcWriterConfig
Auto Trait Implementations§
impl Freeze for VitcWriterConfig
impl RefUnwindSafe for VitcWriterConfig
impl Send for VitcWriterConfig
impl Sync for VitcWriterConfig
impl Unpin for VitcWriterConfig
impl UnsafeUnpin for VitcWriterConfig
impl UnwindSafe for VitcWriterConfig
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