pub struct HighPassFilter {
pub apply_in_full_band: bool,
}Expand description
HPF (high-pass filter) configuration.
Fields§
§apply_in_full_band: boolWhether or not HPF should be applied in the full-band (i.e. 20 – 20,000 Hz).
Trait Implementations§
Source§impl Clone for HighPassFilter
impl Clone for HighPassFilter
Source§fn clone(&self) -> HighPassFilter
fn clone(&self) -> HighPassFilter
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 HighPassFilter
impl Debug for HighPassFilter
Source§impl Default for HighPassFilter
impl Default for HighPassFilter
Source§impl<'de> Deserialize<'de> for HighPassFilterwhere
HighPassFilter: Default,
impl<'de> Deserialize<'de> for HighPassFilterwhere
HighPassFilter: Default,
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 JsonSchema for HighPassFilter
impl JsonSchema for HighPassFilter
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for HighPassFilter
impl PartialEq for HighPassFilter
Source§impl Serialize for HighPassFilter
impl Serialize for HighPassFilter
impl Copy for HighPassFilter
impl StructuralPartialEq for HighPassFilter
Auto Trait Implementations§
impl Freeze for HighPassFilter
impl RefUnwindSafe for HighPassFilter
impl Send for HighPassFilter
impl Sync for HighPassFilter
impl Unpin for HighPassFilter
impl UnsafeUnpin for HighPassFilter
impl UnwindSafe for HighPassFilter
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