pub enum RecordingFrameRate {
Fps1,
Fps2,
Fps5,
Fps10,
Fps20,
Fps25,
Fps30,
Fps40,
Fps50,
Fps60,
Fps100,
Unlimited,
}Expand description
Frame rate options for video recording.
Variants§
Fps1
1 frame per second
Fps2
2 frames per second
Fps5
5 frames per second
Fps10
10 frames per second
Fps20
20 frames per second
Fps25
25 frames per second
Fps30
30 frames per second
Fps40
40 frames per second
Fps50
50 frames per second
Fps60
60 frames per second
Fps100
100 frames per second
Unlimited
No frame rate limit
Implementations§
Trait Implementations§
Source§impl Clone for RecordingFrameRate
impl Clone for RecordingFrameRate
Source§fn clone(&self) -> RecordingFrameRate
fn clone(&self) -> RecordingFrameRate
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 moreSource§impl Debug for RecordingFrameRate
impl Debug for RecordingFrameRate
Source§impl Default for RecordingFrameRate
impl Default for RecordingFrameRate
Source§fn default() -> RecordingFrameRate
fn default() -> RecordingFrameRate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordingFrameRate
impl<'de> Deserialize<'de> for RecordingFrameRate
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RecordingFrameRate
impl Display for RecordingFrameRate
Source§impl EnumIter for RecordingFrameRate
impl EnumIter for RecordingFrameRate
Source§impl PartialEq for RecordingFrameRate
impl PartialEq for RecordingFrameRate
Source§impl Serialize for RecordingFrameRate
impl Serialize for RecordingFrameRate
impl Eq for RecordingFrameRate
impl StructuralPartialEq for RecordingFrameRate
Auto Trait Implementations§
impl Freeze for RecordingFrameRate
impl RefUnwindSafe for RecordingFrameRate
impl Send for RecordingFrameRate
impl Sync for RecordingFrameRate
impl Unpin for RecordingFrameRate
impl UnsafeUnpin for RecordingFrameRate
impl UnwindSafe for RecordingFrameRate
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