pub struct ParseEvidence {
pub event_key_version: String,
pub source_file_path_hash: Option<String>,
pub source_line_number: Option<u64>,
pub source_record_id: Option<String>,
pub model_inferred: bool,
pub timestamp_inferred: bool,
pub account_identity_source: IdentitySource,
}Fields§
§event_key_version: String§source_file_path_hash: Option<String>§source_line_number: Option<u64>§source_record_id: Option<String>§model_inferred: bool§timestamp_inferred: bool§account_identity_source: IdentitySourceTrait Implementations§
Source§impl Clone for ParseEvidence
impl Clone for ParseEvidence
Source§fn clone(&self) -> ParseEvidence
fn clone(&self) -> ParseEvidence
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 ParseEvidence
impl Debug for ParseEvidence
Source§impl<'de> Deserialize<'de> for ParseEvidence
impl<'de> Deserialize<'de> for ParseEvidence
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 ParseEvidence
Source§impl JsonSchema for ParseEvidence
impl JsonSchema for ParseEvidence
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 moreSource§impl PartialEq for ParseEvidence
impl PartialEq for ParseEvidence
Source§fn eq(&self, other: &ParseEvidence) -> bool
fn eq(&self, other: &ParseEvidence) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ParseEvidence
impl Serialize for ParseEvidence
impl StructuralPartialEq for ParseEvidence
Auto Trait Implementations§
impl Freeze for ParseEvidence
impl RefUnwindSafe for ParseEvidence
impl Send for ParseEvidence
impl Sync for ParseEvidence
impl Unpin for ParseEvidence
impl UnsafeUnpin for ParseEvidence
impl UnwindSafe for ParseEvidence
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