pub struct ClaimStateV13 {Show 18 fields
pub schema_version: String,
pub claim_state_id: ClaimStateId,
pub claim_id: ClaimId,
pub claim_version_id: Option<ClaimVersionId>,
pub semantics_profile_id: SemanticsProfileId,
pub view: SemanticViewV1,
pub bilattice_truth: BilatticeTruthV1,
pub support_set_id: Option<SupportSetId>,
pub support_set_digest: Option<ContentDigest>,
pub quality_vector: QualityVectorV1,
pub evidence_admissibility: EvidenceAdmissibilityV1,
pub contradiction_witness_id: Option<ContradictionWitnessId>,
pub valid_from: Option<String>,
pub valid_to: Option<String>,
pub tx_from: String,
pub tx_to: Option<String>,
pub proof_obligations_remaining: Vec<String>,
pub policy_action_allowed: bool,
}Fields§
§schema_version: String§claim_state_id: ClaimStateId§claim_id: ClaimId§claim_version_id: Option<ClaimVersionId>§semantics_profile_id: SemanticsProfileId§view: SemanticViewV1§bilattice_truth: BilatticeTruthV1§support_set_id: Option<SupportSetId>§support_set_digest: Option<ContentDigest>§quality_vector: QualityVectorV1§evidence_admissibility: EvidenceAdmissibilityV1§contradiction_witness_id: Option<ContradictionWitnessId>§valid_from: Option<String>§valid_to: Option<String>§tx_from: String§tx_to: Option<String>§proof_obligations_remaining: Vec<String>§policy_action_allowed: boolImplementations§
Trait Implementations§
Source§impl Clone for ClaimStateV13
impl Clone for ClaimStateV13
Source§fn clone(&self) -> ClaimStateV13
fn clone(&self) -> ClaimStateV13
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 ClaimStateV13
impl Debug for ClaimStateV13
Source§impl<'de> Deserialize<'de> for ClaimStateV13
impl<'de> Deserialize<'de> for ClaimStateV13
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 ClaimStateV13
impl JsonSchema for ClaimStateV13
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 ClaimStateV13
impl PartialEq for ClaimStateV13
Source§fn eq(&self, other: &ClaimStateV13) -> bool
fn eq(&self, other: &ClaimStateV13) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClaimStateV13
impl Serialize for ClaimStateV13
impl Eq for ClaimStateV13
impl StructuralPartialEq for ClaimStateV13
Auto Trait Implementations§
impl Freeze for ClaimStateV13
impl RefUnwindSafe for ClaimStateV13
impl Send for ClaimStateV13
impl Sync for ClaimStateV13
impl Unpin for ClaimStateV13
impl UnsafeUnpin for ClaimStateV13
impl UnwindSafe for ClaimStateV13
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