pub struct OutputRecord {
pub id: Uuid,
pub invocation_id: Uuid,
pub stream: String,
pub content_hash: String,
pub byte_length: usize,
pub storage_type: String,
pub storage_ref: String,
pub content_type: Option<String>,
pub date: NaiveDate,
}Expand description
An output record (stdout/stderr from an invocation).
Fields§
§id: UuidUnique identifier.
invocation_id: UuidInvocation this output belongs to.
stream: StringStream type: “stdout”, “stderr”, or “combined”.
content_hash: StringBLAKE3 hash of the content.
byte_length: usizeSize in bytes.
storage_type: StringStorage type: “inline” or “blob”.
storage_ref: StringStorage reference (data: URI for inline, file:// for blob).
content_type: Option<String>Content type hint (e.g., “text/plain”, “application/json”).
date: NaiveDateDate for partitioning.
Implementations§
Source§impl OutputRecord
impl OutputRecord
Trait Implementations§
Source§impl Clone for OutputRecord
impl Clone for OutputRecord
Source§fn clone(&self) -> OutputRecord
fn clone(&self) -> OutputRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 OutputRecord
impl Debug for OutputRecord
Source§impl<'de> Deserialize<'de> for OutputRecord
impl<'de> Deserialize<'de> for OutputRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OutputRecord
impl RefUnwindSafe for OutputRecord
impl Send for OutputRecord
impl Sync for OutputRecord
impl Unpin for OutputRecord
impl UnsafeUnpin for OutputRecord
impl UnwindSafe for OutputRecord
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