pub enum ReferenceAssociation {
Unrecorded {},
Valid {
owner: ContentReveal,
forms: Vec<u32>,
},
Invalid {},
Limited {},
}Expand description
Validation state of optional original form bindings.
Variants§
Unrecorded
No attached semantic owner or no recorded forms.
Valid
Entire original form set was validated; indices refer to that owner.
Fields
§
owner: ContentRevealExact semantic owner whose full form set was validated. This can be
an ancestor of the nearest ordinary content item in record.owner.
Invalid
Invalid bindings are not partially projected.
Limited
Association inspection hit a shared operation limit.
Trait Implementations§
Source§impl Clone for ReferenceAssociation
impl Clone for ReferenceAssociation
Source§fn clone(&self) -> ReferenceAssociation
fn clone(&self) -> ReferenceAssociation
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 ReferenceAssociation
impl Debug for ReferenceAssociation
Source§impl<'de> Deserialize<'de> for ReferenceAssociation
impl<'de> Deserialize<'de> for ReferenceAssociation
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 ReferenceAssociation
Source§impl JsonSchema for ReferenceAssociation
impl JsonSchema for ReferenceAssociation
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 inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ReferenceAssociation
impl PartialEq for ReferenceAssociation
Source§impl Serialize for ReferenceAssociation
impl Serialize for ReferenceAssociation
impl StructuralPartialEq for ReferenceAssociation
Auto Trait Implementations§
impl Freeze for ReferenceAssociation
impl RefUnwindSafe for ReferenceAssociation
impl Send for ReferenceAssociation
impl Sync for ReferenceAssociation
impl Unpin for ReferenceAssociation
impl UnsafeUnpin for ReferenceAssociation
impl UnwindSafe for ReferenceAssociation
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