pub struct VideoInputParamsAnalog {
pub white_sync_levels: u8,
pub blank_to_black_setup: u8,
pub separate_sync_supported: u8,
pub composite_sync_supported: u8,
pub sync_on_green_supported: u8,
pub sync_on_green_isused: u8,
}Fields§
§white_sync_levels: u8Video white and sync levels, relative to blank:
| Binary value | Data |
|---|---|
00 | +0.7/-0.3 V |
01 | +0.714/-0.286 V |
10 | +1.0/-0.4 V |
11 | +0.7/0 V (EVC) |
blank_to_black_setup: u8Blank-to-black setyp (pedestal) expected
separate_sync_supported: u8Separate sync supported
composite_sync_supported: u8Composite sync supported
sync_on_green_supported: u8Sync on green supported
sync_on_green_isused: u8VSync pulse must be serrated when composite or sync-on-green is used
Implementations§
Trait Implementations§
Source§impl Debug for VideoInputParamsAnalog
impl Debug for VideoInputParamsAnalog
Auto Trait Implementations§
impl Freeze for VideoInputParamsAnalog
impl RefUnwindSafe for VideoInputParamsAnalog
impl Send for VideoInputParamsAnalog
impl Sync for VideoInputParamsAnalog
impl Unpin for VideoInputParamsAnalog
impl UnwindSafe for VideoInputParamsAnalog
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more