pub struct ImportEpisodeRecord {
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 source_envelope_id: EnvelopeId,
pub source_authority: String,
pub trace_ctx: Option<TraceCtx>,
pub metadata: Option<Value>,
}Expand description
An episode ready for import.
Fields§
§episode_id: EpisodeIdEpisode identity.
document_id: StringLinked document.
cause_ids: Vec<String>Cause IDs.
effect_type: StringEffect type.
outcome: StringOutcome.
confidence: f32Confidence.
experiment_id: Option<String>Experiment ID.
source_envelope_id: EnvelopeIdSource envelope provenance.
Source authority.
trace_ctx: Option<TraceCtx>Trace context.
metadata: Option<Value>Additional metadata.
Trait Implementations§
Source§impl Clone for ImportEpisodeRecord
impl Clone for ImportEpisodeRecord
Source§fn clone(&self) -> ImportEpisodeRecord
fn clone(&self) -> ImportEpisodeRecord
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 ImportEpisodeRecord
impl Debug for ImportEpisodeRecord
Source§impl<'de> Deserialize<'de> for ImportEpisodeRecord
impl<'de> Deserialize<'de> for ImportEpisodeRecord
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
Source§impl JsonSchema for ImportEpisodeRecord
impl JsonSchema for ImportEpisodeRecord
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ImportEpisodeRecord
impl RefUnwindSafe for ImportEpisodeRecord
impl Send for ImportEpisodeRecord
impl Sync for ImportEpisodeRecord
impl Unpin for ImportEpisodeRecord
impl UnsafeUnpin for ImportEpisodeRecord
impl UnwindSafe for ImportEpisodeRecord
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