pub struct OzonicPhysInputProtocol;
Expand description
The protocol implementation for physical input of FireWire Audiophile.
Trait Implementations§
Source§impl AvcLevelOperation for OzonicPhysInputProtocol
impl AvcLevelOperation for OzonicPhysInputProtocol
Source§const LEVEL_STEP: i16 = 256i16
const LEVEL_STEP: i16 = 256i16
The step value of signal level.
Source§fn create_level_parameters() -> AvcLevelParameters
fn create_level_parameters() -> AvcLevelParameters
Instantiate parameters.
Source§fn cache_levels(
avc: &BebobAvc,
params: &mut AvcLevelParameters,
timeout_ms: u32,
) -> Result<(), Error>
fn cache_levels( avc: &BebobAvc, params: &mut AvcLevelParameters, timeout_ms: u32, ) -> Result<(), Error>
Cache state of hardware to the parameters.
Source§fn update_levels(
avc: &BebobAvc,
params: &AvcLevelParameters,
old: &mut AvcLevelParameters,
timeout_ms: u32,
) -> Result<(), Error>
fn update_levels( avc: &BebobAvc, params: &AvcLevelParameters, old: &mut AvcLevelParameters, timeout_ms: u32, ) -> Result<(), Error>
Update the hardware when detecting any changes in the parameters.
Source§impl AvcLrBalanceOperation for OzonicPhysInputProtocol
impl AvcLrBalanceOperation for OzonicPhysInputProtocol
Source§const BALANCE_MIN: i16 = -32_768i16
const BALANCE_MIN: i16 = -32_768i16
The minimum value of L/R balance.
Source§const BALANCE_MAX: i16 = 32_766i16
const BALANCE_MAX: i16 = 32_766i16
The maximum value of L/R balance.
Source§const BALANCE_STEP: i16 = 128i16
const BALANCE_STEP: i16 = 128i16
The step value of L/R balance.
Source§fn create_lr_balance_parameters() -> AvcLrBalanceParameters
fn create_lr_balance_parameters() -> AvcLrBalanceParameters
Instantiate parameters.
Source§fn cache_lr_balances(
avc: &BebobAvc,
params: &mut AvcLrBalanceParameters,
timeout_ms: u32,
) -> Result<(), Error>
fn cache_lr_balances( avc: &BebobAvc, params: &mut AvcLrBalanceParameters, timeout_ms: u32, ) -> Result<(), Error>
Cache state of hardware to the parameters.
Source§fn update_lr_balances(
avc: &BebobAvc,
params: &AvcLrBalanceParameters,
old: &mut AvcLrBalanceParameters,
timeout_ms: u32,
) -> Result<(), Error>
fn update_lr_balances( avc: &BebobAvc, params: &AvcLrBalanceParameters, old: &mut AvcLrBalanceParameters, timeout_ms: u32, ) -> Result<(), Error>
Update the hardware when detecting any changes in the parameters.
Source§impl Debug for OzonicPhysInputProtocol
impl Debug for OzonicPhysInputProtocol
Source§impl Default for OzonicPhysInputProtocol
impl Default for OzonicPhysInputProtocol
Source§fn default() -> OzonicPhysInputProtocol
fn default() -> OzonicPhysInputProtocol
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OzonicPhysInputProtocol
impl RefUnwindSafe for OzonicPhysInputProtocol
impl Send for OzonicPhysInputProtocol
impl Sync for OzonicPhysInputProtocol
impl Unpin for OzonicPhysInputProtocol
impl UnwindSafe for OzonicPhysInputProtocol
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