pub struct LtcReaderConfig {
pub sample_rate: u32,
pub frame_rate: FrameRate,
pub min_amplitude: f32,
pub max_speed: f32,
}Expand description
LTC reader configuration
Fields§
§sample_rate: u32Sample rate of the input audio
frame_rate: FrameRateExpected frame rate
min_amplitude: f32Minimum signal amplitude (0.0 to 1.0)
max_speed: f32Maximum speed variation (1.0 = nominal, 2.0 = 2x speed)
Trait Implementations§
Source§impl Clone for LtcReaderConfig
impl Clone for LtcReaderConfig
Source§fn clone(&self) -> LtcReaderConfig
fn clone(&self) -> LtcReaderConfig
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 LtcReaderConfig
impl Debug for LtcReaderConfig
Auto Trait Implementations§
impl Freeze for LtcReaderConfig
impl RefUnwindSafe for LtcReaderConfig
impl Send for LtcReaderConfig
impl Sync for LtcReaderConfig
impl Unpin for LtcReaderConfig
impl UnsafeUnpin for LtcReaderConfig
impl UnwindSafe for LtcReaderConfig
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