pub struct RecordingHistory {
pub recording: Recording,
pub final_transcript: Option<String>,
pub correction_packet: Option<CorrectionPacket>,
pub pieces: Vec<IngressPiece>,
}Expand description
Detailed state for one recording.
Fields§
§recording: Recording§final_transcript: Option<String>§correction_packet: Option<CorrectionPacket>§pieces: Vec<IngressPiece>Trait Implementations§
Source§impl Clone for RecordingHistory
impl Clone for RecordingHistory
Source§fn clone(&self) -> RecordingHistory
fn clone(&self) -> RecordingHistory
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 moreAuto Trait Implementations§
impl Freeze for RecordingHistory
impl RefUnwindSafe for RecordingHistory
impl Send for RecordingHistory
impl Sync for RecordingHistory
impl Unpin for RecordingHistory
impl UnsafeUnpin for RecordingHistory
impl UnwindSafe for RecordingHistory
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