Skip to main content

EqualizerFeature

Struct EqualizerFeature 

Source
pub struct EqualizerFeature { /* private fields */ }
Expand description

Implements the Equalizer / 0x8310 feature.

Implementations§

Source§

impl EqualizerFeature

Source

pub async fn get_eq_info(&self) -> Result<EqInfo, Hidpp20Error>

Retrieves the EQ table’s band count, gain range and storage capabilities.

Source

pub async fn get_frequencies( &self, band_count: u8, ) -> Result<Vec<u16>, Hidpp20Error>

Retrieves the frequency (Hz) of every band.

band_count is the value from EqInfo::band_count; the device returns up to seven frequencies per response, so this pages through them until all band_count are collected.

Source

pub async fn get_frequency_gains( &self, location: GainLocation, band_count: u8, ) -> Result<Vec<i8>, Hidpp20Error>

Retrieves the active gain (dB) of every band from location.

band_count is the value from EqInfo::band_count (at most 15, the number of gains a single response carries).

Source

pub async fn set_frequency_gains( &self, persistence: GainPersistence, gains: &[i8], ) -> Result<Vec<i8>, Hidpp20Error>

Sets the per-band gains (dB) and returns the device’s echo of them.

gains holds one signed value per band (at most 15). The device rejects out-of-range gains.

Source

pub async fn get_mic_noise_reduction(&self) -> Result<bool, Hidpp20Error>

Retrieves whether hardware microphone noise reduction is enabled.

Source

pub async fn set_mic_noise_reduction( &self, enabled: bool, ) -> Result<(), Hidpp20Error>

Enables or disables hardware microphone noise reduction.

Trait Implementations§

Source§

impl Clone for EqualizerFeature

Source§

fn clone(&self) -> EqualizerFeature

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl CreatableFeature for EqualizerFeature

Source§

const ID: u16 = 0x8310

The protocol ID of the implemented feature.
Source§

const STARTING_VERSION: u8 = 2

The version of the feature the implementation starts to support.
Source§

fn new(chan: Arc<HidppChannel>, device_index: u8, feature_index: u8) -> Self

Creates a new instance of the feature implementation.
Source§

impl Feature for EqualizerFeature

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more