pub enum RecordingFrameRate {
Fps1,
Fps2,
Fps5,
Fps10,
Fps20,
Fps25,
Fps30,
Fps40,
Fps50,
Fps60,
Fps100,
Unlimited,
}
Variants§
Implementations§
Trait Implementations§
source§impl Clone for RecordingFrameRate
impl Clone for RecordingFrameRate
source§fn clone(&self) -> RecordingFrameRate
fn clone(&self) -> RecordingFrameRate
Returns a copy 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 PartialEq for RecordingFrameRate
impl PartialEq for RecordingFrameRate
source§fn eq(&self, other: &RecordingFrameRate) -> bool
fn eq(&self, other: &RecordingFrameRate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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 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