Enum Fcs
#[repr(u8)]pub enum Fcs {
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 Fcs
impl Ord for Fcs
§impl PartialOrd for Fcs
impl PartialOrd for Fcs
impl Copy for Fcs
impl Eq for Fcs
impl StructuralPartialEq for Fcs
Auto Trait Implementations§
impl Freeze for Fcs
impl RefUnwindSafe for Fcs
impl Send for Fcs
impl Sync for Fcs
impl Unpin for Fcs
impl UnwindSafe for Fcs
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