pub struct LtcWriterConfig {
pub sample_rate: u32,
pub frame_rate: FrameRate,
pub amplitude: f32,
}Expand description
LTC writer configuration
Fields§
§sample_rate: u32Sample rate of the output audio
frame_rate: FrameRateFrame rate to encode
amplitude: f32Output signal amplitude (0.0 to 1.0)
Trait Implementations§
Source§impl Clone for LtcWriterConfig
impl Clone for LtcWriterConfig
Source§fn clone(&self) -> LtcWriterConfig
fn clone(&self) -> LtcWriterConfig
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 LtcWriterConfig
impl Debug for LtcWriterConfig
Auto Trait Implementations§
impl Freeze for LtcWriterConfig
impl RefUnwindSafe for LtcWriterConfig
impl Send for LtcWriterConfig
impl Sync for LtcWriterConfig
impl Unpin for LtcWriterConfig
impl UnsafeUnpin for LtcWriterConfig
impl UnwindSafe for LtcWriterConfig
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