pub struct RecordingStatus {
pub id: Uuid,
pub user_id: String,
pub sha256: String,
pub original_filename: String,
pub size_bytes: u64,
pub recorded_at: DateTime<Utc>,
pub received_at: DateTime<Utc>,
pub transcription_model: String,
pub reconciliation_model: String,
pub reconciliation_reasoning: String,
pub state: RecordingState,
pub correction_packet: Option<CorrectionPacket>,
}Expand description
Current state, immutable identity, and optional completed correction packet.
Fields§
§id: UuidStable recording identifier.
user_id: StringStable application user identifier charged for provider calls.
sha256: StringLowercase SHA-256 digest of the original bytes.
original_filename: StringSanitized original filename.
size_bytes: u64Original byte length.
recorded_at: DateTime<Utc>Instant at which recording began.
received_at: DateTime<Utc>Instant at which AudioIngress accepted the recording.
transcription_model: StringGemini speaker-analysis model attribution.
reconciliation_model: StringGPT parsing and reconciliation model attribution.
reconciliation_reasoning: StringGPT parsing and reconciliation reasoning attribution.
state: RecordingStateCurrent processing state.
correction_packet: Option<CorrectionPacket>Durable transport-neutral packet, present after successful completion.
Trait Implementations§
Source§impl Clone for RecordingStatus
impl Clone for RecordingStatus
Source§fn clone(&self) -> RecordingStatus
fn clone(&self) -> RecordingStatus
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 RecordingStatus
impl Debug for RecordingStatus
Auto Trait Implementations§
impl Freeze for RecordingStatus
impl RefUnwindSafe for RecordingStatus
impl Send for RecordingStatus
impl Sync for RecordingStatus
impl Unpin for RecordingStatus
impl UnsafeUnpin for RecordingStatus
impl UnwindSafe for RecordingStatus
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