pub struct InputVolume {
pub mul: f32,
pub db: f32,
}Expand description
Response value for crate::client::Inputs::volume.
Fields§
§mul: f32Volume setting in mul.
db: f32Volume setting in dB.
Trait Implementations§
Source§impl Clone for InputVolume
impl Clone for InputVolume
Source§fn clone(&self) -> InputVolume
fn clone(&self) -> InputVolume
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 InputVolume
impl Debug for InputVolume
Source§impl Default for InputVolume
impl Default for InputVolume
Source§fn default() -> InputVolume
fn default() -> InputVolume
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputVolume
impl<'de> Deserialize<'de> for InputVolume
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 InputVolume
impl PartialEq for InputVolume
Source§impl PartialOrd for InputVolume
impl PartialOrd for InputVolume
Source§impl Serialize for InputVolume
impl Serialize for InputVolume
impl StructuralPartialEq for InputVolume
Auto Trait Implementations§
impl Freeze for InputVolume
impl RefUnwindSafe for InputVolume
impl Send for InputVolume
impl Sync for InputVolume
impl Unpin for InputVolume
impl UnsafeUnpin for InputVolume
impl UnwindSafe for InputVolume
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