pub struct VoicePipelineConfig {
pub model_cache_dir: PathBuf,
pub active: bool,
}Expand description
Runtime configuration for the voice pipeline. Wraps the serializable VoiceConfig with runtime state.
Fields§
§model_cache_dir: PathBufModel cache directory path.
active: boolWhether voice pipeline is active.
Trait Implementations§
Source§impl Clone for VoicePipelineConfig
impl Clone for VoicePipelineConfig
Source§fn clone(&self) -> VoicePipelineConfig
fn clone(&self) -> VoicePipelineConfig
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 VoicePipelineConfig
impl Debug for VoicePipelineConfig
Auto Trait Implementations§
impl Freeze for VoicePipelineConfig
impl RefUnwindSafe for VoicePipelineConfig
impl Send for VoicePipelineConfig
impl Sync for VoicePipelineConfig
impl Unpin for VoicePipelineConfig
impl UnsafeUnpin for VoicePipelineConfig
impl UnwindSafe for VoicePipelineConfig
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