Enum Lcs
#[repr(u8)]pub enum Lcs {
LineClockCounterUnderflow = 0,
FrameClockCounterUnderflow = 1,
HsyncRising = 2,
HsyncFalling = 3,
VsyncRising = 4,
VsyncFalling = 5,
TeRising = 6,
TeFalling = 7,
}Variants§
LineClockCounterUnderflow = 0
line clock counter underflow.
FrameClockCounterUnderflow = 1
frame clock counter underflow.
HsyncRising = 2
HSYNC rising edge.
HsyncFalling = 3
HSYNC falling edge.
VsyncRising = 4
VSYNC rising edge.
VsyncFalling = 5
VSYNC falling edge.
TeRising = 6
TE rising edge.
TeFalling = 7
TE falling edge.
Implementations§
Trait Implementations§
§impl Ord for Lcs
impl Ord for Lcs
§impl PartialOrd for Lcs
impl PartialOrd for Lcs
impl Copy for Lcs
impl Eq for Lcs
impl StructuralPartialEq for Lcs
Auto Trait Implementations§
impl Freeze for Lcs
impl RefUnwindSafe for Lcs
impl Send for Lcs
impl Sync for Lcs
impl Unpin for Lcs
impl UnwindSafe for Lcs
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