pub struct ProjectionEpisode {Show 15 fields
pub episode_id: EpisodeId,
pub document_id: String,
pub cause_ids: Vec<String>,
pub effect_type: String,
pub outcome: String,
pub confidence: f32,
pub experiment_id: Option<String>,
pub scope_key: ScopeKey,
pub source_envelope_id: EnvelopeId,
pub source_authority: String,
pub trace_id: Option<String>,
pub recorded_at: String,
pub metadata: Option<Value>,
pub source_exported_at: Option<String>,
pub transformed_at: Option<String>,
}Expand description
Public read shape for imported episode projection rows.
Fields§
§episode_id: EpisodeId§document_id: String§cause_ids: Vec<String>§effect_type: String§outcome: String§confidence: f32§experiment_id: Option<String>§scope_key: ScopeKey§source_envelope_id: EnvelopeId§trace_id: Option<String>§recorded_at: String§metadata: Option<Value>§source_exported_at: Option<String>§transformed_at: Option<String>Trait Implementations§
Source§impl Clone for ProjectionEpisode
impl Clone for ProjectionEpisode
Source§fn clone(&self) -> ProjectionEpisode
fn clone(&self) -> ProjectionEpisode
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 ProjectionEpisode
impl Debug for ProjectionEpisode
Source§impl<'de> Deserialize<'de> for ProjectionEpisode
impl<'de> Deserialize<'de> for ProjectionEpisode
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 ProjectionEpisode
impl RefUnwindSafe for ProjectionEpisode
impl Send for ProjectionEpisode
impl Sync for ProjectionEpisode
impl Unpin for ProjectionEpisode
impl UnsafeUnpin for ProjectionEpisode
impl UnwindSafe for ProjectionEpisode
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