#[repr(u8)]pub enum FrameRate {
Show 13 variants
Fps15 = 0,
Fps15To5 = 1,
Fps15To2 = 2,
Fps10 = 3,
Fps8_5 = 4,
Fps5 = 5,
Fps20 = 6,
Fps20To5 = 7,
Fps30 = 8,
Fps30To5 = 9,
Fps15To10 = 10,
Fps20To10 = 11,
Fps30To10 = 12,
}
Expand description
Framerate settings.
See Camera::set_frame_rate()
to learn how to use this.
Variants§
Fps15 = 0
15 FPS.
Fps15To5 = 1
15 to 5 FPS.
Fps15To2 = 2
15 to 2 FPS.
Fps10 = 3
10 FPS.
Fps8_5 = 4
8.5 FPS.
Fps5 = 5
5 FPS.
Fps20 = 6
20 FPS.
Fps20To5 = 7
20 to 5 FPS.
Fps30 = 8
30 FPS.
Fps30To5 = 9
30 to 5 FPS.
Fps15To10 = 10
15 to 10 FPS.
Fps20To10 = 11
20 to 10 FPS.
Fps30To10 = 12
30 to 10 FPS.
Trait Implementations§
source§impl From<FrameRate> for CAMU_FrameRate
impl From<FrameRate> for CAMU_FrameRate
impl Copy for FrameRate
impl Eq for FrameRate
impl StructuralPartialEq for FrameRate
Auto Trait Implementations§
impl RefUnwindSafe for FrameRate
impl Send for FrameRate
impl Sync for FrameRate
impl Unpin for FrameRate
impl UnwindSafe for FrameRate
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more