pub struct ResumePlan {
pub fragment_id: TxId,
pub transcript: Option<String>,
pub speaker_labels: Option<Vec<LocalSpeakerLabel>>,
pub speaker_features: Vec<SpeakerFeatureEvidence>,
pub final_analysis: Option<ExecutedAnalysis>,
pub active_attempt: Option<TxId>,
pub interrupted: bool,
}Fields§
§fragment_id: TxId§transcript: Option<String>§speaker_labels: Option<Vec<LocalSpeakerLabel>>§speaker_features: Vec<SpeakerFeatureEvidence>§final_analysis: Option<ExecutedAnalysis>§active_attempt: Option<TxId>§interrupted: boolTrait Implementations§
Source§impl Clone for ResumePlan
impl Clone for ResumePlan
Source§fn clone(&self) -> ResumePlan
fn clone(&self) -> ResumePlan
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 ResumePlan
impl Debug for ResumePlan
Source§impl PartialEq for ResumePlan
impl PartialEq for ResumePlan
impl StructuralPartialEq for ResumePlan
Auto Trait Implementations§
impl Freeze for ResumePlan
impl RefUnwindSafe for ResumePlan
impl Send for ResumePlan
impl Sync for ResumePlan
impl Unpin for ResumePlan
impl UnsafeUnpin for ResumePlan
impl UnwindSafe for ResumePlan
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