pub struct IngressPiece {Show 17 fields
pub id: String,
pub recording_id: Uuid,
pub sha256: String,
pub original_filename: String,
pub source_created_at: String,
pub piece_index: u32,
pub piece_count: u32,
pub transcript_text: String,
pub estimated_tokens: u64,
pub phase: String,
pub provenance_id: Option<String>,
pub state: Value,
pub version: i64,
pub ingress_failure_count: i64,
pub ingress_failures: Value,
pub created_at: String,
pub updated_at: String,
}Expand description
One deterministic transcript piece and its Session History lifecycle.
Fields§
§id: String§recording_id: Uuid§sha256: String§original_filename: String§source_created_at: String§piece_index: u32§piece_count: u32§transcript_text: String§estimated_tokens: u64§phase: String§provenance_id: Option<String>§state: Value§version: i64§ingress_failure_count: i64§ingress_failures: Value§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for IngressPiece
impl Clone for IngressPiece
Source§fn clone(&self) -> IngressPiece
fn clone(&self) -> IngressPiece
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 IngressPiece
impl RefUnwindSafe for IngressPiece
impl Send for IngressPiece
impl Sync for IngressPiece
impl Unpin for IngressPiece
impl UnsafeUnpin for IngressPiece
impl UnwindSafe for IngressPiece
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