#[non_exhaustive]pub enum SmartTurnLang {
Zh,
}Expand description
Language for a WaveKat fine-tune of Pipecat Smart Turn.
Each variant resolves to a <lang>/smart-turn-cpu.onnx file inside the
language-agnostic HuggingFace repo wavekat/smart-turn-ONNX. The set is
marked #[non_exhaustive] because adding a new language must not be a
breaking change.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Zh
Mandarin Chinese.
Trait Implementations§
Source§impl Clone for SmartTurnLang
impl Clone for SmartTurnLang
Source§fn clone(&self) -> SmartTurnLang
fn clone(&self) -> SmartTurnLang
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SmartTurnLang
Source§impl Debug for SmartTurnLang
impl Debug for SmartTurnLang
impl Eq for SmartTurnLang
Source§impl PartialEq for SmartTurnLang
impl PartialEq for SmartTurnLang
impl StructuralPartialEq for SmartTurnLang
Auto Trait Implementations§
impl Freeze for SmartTurnLang
impl RefUnwindSafe for SmartTurnLang
impl Send for SmartTurnLang
impl Sync for SmartTurnLang
impl Unpin for SmartTurnLang
impl UnsafeUnpin for SmartTurnLang
impl UnwindSafe for SmartTurnLang
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