pub struct CodexRelayEvidenceEntry {Show 14 fields
pub schema_version: u32,
pub evidence_id: String,
pub timestamp_ms: u64,
pub source: String,
pub kind: CodexRelayEvidenceKind,
pub service_name: String,
pub station_name: String,
pub upstream_index: usize,
pub provider_id: Option<String>,
pub endpoint_id: Option<String>,
pub provider_endpoint_key: Option<String>,
pub upstream_base_url: String,
pub model: Option<String>,
pub payload: Value,
}Fields§
§schema_version: u32§evidence_id: String§timestamp_ms: u64§source: String§kind: CodexRelayEvidenceKind§service_name: String§station_name: String§upstream_index: usize§provider_id: Option<String>§endpoint_id: Option<String>§provider_endpoint_key: Option<String>§upstream_base_url: String§model: Option<String>§payload: ValueTrait Implementations§
Source§impl Clone for CodexRelayEvidenceEntry
impl Clone for CodexRelayEvidenceEntry
Source§fn clone(&self) -> CodexRelayEvidenceEntry
fn clone(&self) -> CodexRelayEvidenceEntry
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 CodexRelayEvidenceEntry
impl Debug for CodexRelayEvidenceEntry
Source§impl<'de> Deserialize<'de> for CodexRelayEvidenceEntry
impl<'de> Deserialize<'de> for CodexRelayEvidenceEntry
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 PartialEq for CodexRelayEvidenceEntry
impl PartialEq for CodexRelayEvidenceEntry
Source§fn eq(&self, other: &CodexRelayEvidenceEntry) -> bool
fn eq(&self, other: &CodexRelayEvidenceEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CodexRelayEvidenceEntry
impl Serialize for CodexRelayEvidenceEntry
impl StructuralPartialEq for CodexRelayEvidenceEntry
Auto Trait Implementations§
impl Freeze for CodexRelayEvidenceEntry
impl RefUnwindSafe for CodexRelayEvidenceEntry
impl Send for CodexRelayEvidenceEntry
impl Sync for CodexRelayEvidenceEntry
impl Unpin for CodexRelayEvidenceEntry
impl UnsafeUnpin for CodexRelayEvidenceEntry
impl UnwindSafe for CodexRelayEvidenceEntry
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