pub struct RecordingStatus {
pub id: Uuid,
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,
}Expand description
Current state and immutable identity of one recording.
Fields§
§id: UuidStable recording identifier.
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 transcription model attribution.
reconciliation_model: StringCodex reconciliation model attribution.
reconciliation_reasoning: StringCodex reconciliation reasoning attribution.
state: RecordingStateCurrent processing state.
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