pub struct NormalizedPattern {
pub brightness: f32,
pub color_temp: f32,
pub focal_distance: f32,
pub volume: f32,
pub tempo: f32,
pub pitch: f32,
pub temperature: f32,
pub movement: f32,
pub arousal: f32,
}Expand description
A fully normalized submodality pattern with values in [0, 1].
Fields§
§brightness: f32Normalized brightness.
color_temp: f32Normalized color temperature.
focal_distance: f32Normalized focal distance.
volume: f32Normalized volume.
tempo: f32Normalized tempo.
pitch: f32Normalized pitch.
temperature: f32Normalized temperature.
movement: f32Normalized movement.
arousal: f32Normalized arousal.
Trait Implementations§
Source§impl Clone for NormalizedPattern
impl Clone for NormalizedPattern
Source§fn clone(&self) -> NormalizedPattern
fn clone(&self) -> NormalizedPattern
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 NormalizedPattern
impl Debug for NormalizedPattern
Source§impl<'de> Deserialize<'de> for NormalizedPattern
impl<'de> Deserialize<'de> for NormalizedPattern
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 PartialEq for NormalizedPattern
impl PartialEq for NormalizedPattern
Source§impl Serialize for NormalizedPattern
impl Serialize for NormalizedPattern
impl StructuralPartialEq for NormalizedPattern
Auto Trait Implementations§
impl Freeze for NormalizedPattern
impl RefUnwindSafe for NormalizedPattern
impl Send for NormalizedPattern
impl Sync for NormalizedPattern
impl Unpin for NormalizedPattern
impl UnwindSafe for NormalizedPattern
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