pub struct SupportSetV1 {
pub schema_version: String,
pub support_set_id: SupportSetId,
pub claim_id: ClaimId,
pub semantics_profile_id: SemanticsProfileId,
pub support_tokens: Vec<SupportTokenV1>,
pub support_expr: SupportExprV1,
pub content_digest: ContentDigest,
}Fields§
§schema_version: String§support_set_id: SupportSetId§claim_id: ClaimId§semantics_profile_id: SemanticsProfileId§support_tokens: Vec<SupportTokenV1>§support_expr: SupportExprV1§content_digest: ContentDigestImplementations§
Trait Implementations§
Source§impl Clone for SupportSetV1
impl Clone for SupportSetV1
Source§fn clone(&self) -> SupportSetV1
fn clone(&self) -> SupportSetV1
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 SupportSetV1
impl Debug for SupportSetV1
Source§impl<'de> Deserialize<'de> for SupportSetV1
impl<'de> Deserialize<'de> for SupportSetV1
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 SupportSetV1
impl JsonSchema for SupportSetV1
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 SupportSetV1
impl PartialEq for SupportSetV1
Source§fn eq(&self, other: &SupportSetV1) -> bool
fn eq(&self, other: &SupportSetV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SupportSetV1
impl Serialize for SupportSetV1
impl Eq for SupportSetV1
impl StructuralPartialEq for SupportSetV1
Auto Trait Implementations§
impl Freeze for SupportSetV1
impl RefUnwindSafe for SupportSetV1
impl Send for SupportSetV1
impl Sync for SupportSetV1
impl Unpin for SupportSetV1
impl UnsafeUnpin for SupportSetV1
impl UnwindSafe for SupportSetV1
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