pub enum WhisperCppPhase {
Preparing,
DownloadingModel,
LoadingModel,
Transcribing,
}Expand description
Variants describing whisper cpp phase.
Variants§
Preparing
The preparing variant.
DownloadingModel
The downloading model variant.
LoadingModel
The loading model variant.
Transcribing
The transcribing variant.
Implementations§
Trait Implementations§
Source§impl Clone for WhisperCppPhase
impl Clone for WhisperCppPhase
Source§fn clone(&self) -> WhisperCppPhase
fn clone(&self) -> WhisperCppPhase
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 moreSource§impl Debug for WhisperCppPhase
impl Debug for WhisperCppPhase
Source§impl<'de> Deserialize<'de> for WhisperCppPhase
impl<'de> Deserialize<'de> for WhisperCppPhase
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WhisperCppPhase
impl PartialEq for WhisperCppPhase
Source§fn eq(&self, other: &WhisperCppPhase) -> bool
fn eq(&self, other: &WhisperCppPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WhisperCppPhase
impl Serialize for WhisperCppPhase
impl Copy for WhisperCppPhase
impl Eq for WhisperCppPhase
impl StructuralPartialEq for WhisperCppPhase
Auto Trait Implementations§
impl Freeze for WhisperCppPhase
impl RefUnwindSafe for WhisperCppPhase
impl Send for WhisperCppPhase
impl Sync for WhisperCppPhase
impl Unpin for WhisperCppPhase
impl UnsafeUnpin for WhisperCppPhase
impl UnwindSafe for WhisperCppPhase
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