pub enum SceneClass {
Black,
Static,
Detailed,
Motion,
Complex,
}Expand description
Classified scene type based on spatial/temporal complexity.
Variants§
Black
Black / fade / freeze frame (near-zero motion and detail)
Static
Static / talking-heads (low spatial, low temporal)
Detailed
Detailed / landscape (high spatial, low temporal)
Motion
Motion / action (low spatial, high temporal)
Complex
Complex / crowd / nature (high spatial, high temporal)
Trait Implementations§
Source§impl Clone for SceneClass
impl Clone for SceneClass
Source§fn clone(&self) -> SceneClass
fn clone(&self) -> SceneClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SceneClass
Source§impl Debug for SceneClass
impl Debug for SceneClass
Source§impl<'de> Deserialize<'de> for SceneClass
impl<'de> Deserialize<'de> for SceneClass
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 SceneClass
impl Display for SceneClass
impl Eq for SceneClass
Source§impl PartialEq for SceneClass
impl PartialEq for SceneClass
Source§fn eq(&self, other: &SceneClass) -> bool
fn eq(&self, other: &SceneClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SceneClass
impl Serialize for SceneClass
impl StructuralPartialEq for SceneClass
Auto Trait Implementations§
impl Freeze for SceneClass
impl RefUnwindSafe for SceneClass
impl Send for SceneClass
impl Sync for SceneClass
impl Unpin for SceneClass
impl UnsafeUnpin for SceneClass
impl UnwindSafe for SceneClass
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