pub struct OutputAvailableProjection {
pub kind: String,
pub output_ref: String,
pub preview: String,
pub run_id: RunId,
pub session_id: SessionId,
}Expand description
Product-neutral durable output_available event projection.
Fields§
§kind: StringStable event discriminator.
output_ref: StringStable output identity derived from the durable run revision.
preview: StringUser-visible output preview.
run_id: RunIdDurable run identity.
session_id: SessionIdDurable session identity.
Trait Implementations§
Source§impl Clone for OutputAvailableProjection
impl Clone for OutputAvailableProjection
Source§fn clone(&self) -> OutputAvailableProjection
fn clone(&self) -> OutputAvailableProjection
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 OutputAvailableProjection
impl Debug for OutputAvailableProjection
Source§impl<'de> Deserialize<'de> for OutputAvailableProjection
impl<'de> Deserialize<'de> for OutputAvailableProjection
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
impl Eq for OutputAvailableProjection
impl StructuralPartialEq for OutputAvailableProjection
Auto Trait Implementations§
impl Freeze for OutputAvailableProjection
impl RefUnwindSafe for OutputAvailableProjection
impl Send for OutputAvailableProjection
impl Sync for OutputAvailableProjection
impl Unpin for OutputAvailableProjection
impl UnsafeUnpin for OutputAvailableProjection
impl UnwindSafe for OutputAvailableProjection
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