pub enum SecondaryTiming {
None,
GTF {
start_horizontal_freq: u32,
c: f32,
m: f32,
k: f32,
j: f32,
},
Other(u8, [u8; 7]),
}Expand description
Parameters for a secondary timing formula.
Variants§
Trait Implementations§
Source§impl Clone for SecondaryTiming
impl Clone for SecondaryTiming
Source§fn clone(&self) -> SecondaryTiming
fn clone(&self) -> SecondaryTiming
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 moreAuto Trait Implementations§
impl Freeze for SecondaryTiming
impl RefUnwindSafe for SecondaryTiming
impl Send for SecondaryTiming
impl Sync for SecondaryTiming
impl Unpin for SecondaryTiming
impl UnwindSafe for SecondaryTiming
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