pub struct Fraction {
pub numerator: u32,
pub denominator: u32,
}
Expand description
Fraction used for timing settings
Fields§
§numerator: u32
§denominator: u32
Implementations§
Trait Implementations§
source§impl From<Fraction> for v4l2_fract
impl From<Fraction> for v4l2_fract
source§impl From<v4l2_fract> for Fraction
impl From<v4l2_fract> for Fraction
source§fn from(frac: v4l2_fract) -> Self
fn from(frac: v4l2_fract) -> Self
Converts to this type from the input type.
impl Copy for Fraction
Auto Trait Implementations§
impl Freeze for Fraction
impl RefUnwindSafe for Fraction
impl Send for Fraction
impl Sync for Fraction
impl Unpin for Fraction
impl UnwindSafe for Fraction
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