pub enum RecordingState {
Queued,
Processing {
attempt: u8,
progress: TranscriptionStatus,
},
Complete {
transcript: String,
},
Failed {
attempts: u8,
error: String,
retryable: bool,
},
}Expand description
Automatic processing state of one recording.
Variants§
Queued
Persisted and waiting for automatic processing.
Processing
An in-memory transcription attempt is active.
Fields
§
progress: TranscriptionStatusCurrent dependency status. Its transcript is always omitted.
Complete
The canonical transcript is durable.
Failed
Automatic processing stopped.
Trait Implementations§
Source§impl Clone for RecordingState
impl Clone for RecordingState
Source§fn clone(&self) -> RecordingState
fn clone(&self) -> RecordingState
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 RecordingState
impl Debug for RecordingState
Auto Trait Implementations§
impl Freeze for RecordingState
impl RefUnwindSafe for RecordingState
impl Send for RecordingState
impl Sync for RecordingState
impl Unpin for RecordingState
impl UnsafeUnpin for RecordingState
impl UnwindSafe for RecordingState
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