pub enum SceneChangeThreshold {
VerySensitive,
Sensitive,
Normal,
Conservative,
VeryConservative,
Custom(f32),
}Expand description
Scene change detection threshold preset.
Variants§
VerySensitive
Very sensitive (0.2).
Sensitive
Sensitive (0.3).
Normal
Normal (0.4).
Conservative
Conservative (0.5).
VeryConservative
Very conservative (0.6).
Custom(f32)
Custom threshold (0.0-1.0).
Implementations§
Trait Implementations§
Source§impl Clone for SceneChangeThreshold
impl Clone for SceneChangeThreshold
Source§fn clone(&self) -> SceneChangeThreshold
fn clone(&self) -> SceneChangeThreshold
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 SceneChangeThreshold
impl Debug for SceneChangeThreshold
Source§impl Default for SceneChangeThreshold
impl Default for SceneChangeThreshold
Source§impl PartialEq for SceneChangeThreshold
impl PartialEq for SceneChangeThreshold
impl Copy for SceneChangeThreshold
impl StructuralPartialEq for SceneChangeThreshold
Auto Trait Implementations§
impl Freeze for SceneChangeThreshold
impl RefUnwindSafe for SceneChangeThreshold
impl Send for SceneChangeThreshold
impl Sync for SceneChangeThreshold
impl Unpin for SceneChangeThreshold
impl UnsafeUnpin for SceneChangeThreshold
impl UnwindSafe for SceneChangeThreshold
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more