pub struct SetLpfSettingStruct {
pub setting: u16,
}Expand description
Low pass filter setting. This value represents x in the equation value = value * x + sample * (1-x). 0.0 = no filtering, 0.99 = heavy filtering.
Fields§
§setting: u160~999: x = 0~0.999
Trait Implementations§
Source§impl Clone for SetLpfSettingStruct
impl Clone for SetLpfSettingStruct
Source§fn clone(&self) -> SetLpfSettingStruct
fn clone(&self) -> SetLpfSettingStruct
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 SetLpfSettingStruct
impl Debug for SetLpfSettingStruct
Source§impl Default for SetLpfSettingStruct
impl Default for SetLpfSettingStruct
Source§fn default() -> SetLpfSettingStruct
fn default() -> SetLpfSettingStruct
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetLpfSettingStruct
impl<'de> Deserialize<'de> for SetLpfSettingStruct
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 DeserializePayload for SetLpfSettingStruct
impl DeserializePayload for SetLpfSettingStruct
fn deserialize(payload: &[u8]) -> Self
Source§impl MessageInfo for SetLpfSettingStruct
impl MessageInfo for SetLpfSettingStruct
Source§impl PartialEq for SetLpfSettingStruct
impl PartialEq for SetLpfSettingStruct
Source§impl Serialize for SetLpfSettingStruct
impl Serialize for SetLpfSettingStruct
impl StructuralPartialEq for SetLpfSettingStruct
Auto Trait Implementations§
impl Freeze for SetLpfSettingStruct
impl RefUnwindSafe for SetLpfSettingStruct
impl Send for SetLpfSettingStruct
impl Sync for SetLpfSettingStruct
impl Unpin for SetLpfSettingStruct
impl UnwindSafe for SetLpfSettingStruct
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