pub enum QuerySchema {
V3,
}Expand description
Exact schema marker for a complete ManT query result.
Variants§
V3
Query envelope built around mant.document/v3.
Trait Implementations§
Source§impl Clone for QuerySchema
impl Clone for QuerySchema
Source§fn clone(&self) -> QuerySchema
fn clone(&self) -> QuerySchema
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 moreimpl Copy for QuerySchema
Source§impl Debug for QuerySchema
impl Debug for QuerySchema
Source§impl<'de> Deserialize<'de> for QuerySchema
impl<'de> Deserialize<'de> for QuerySchema
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 QuerySchema
Source§impl JsonSchema for QuerySchema
impl JsonSchema for QuerySchema
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 QuerySchema
impl PartialEq for QuerySchema
Source§impl Serialize for QuerySchema
impl Serialize for QuerySchema
impl StructuralPartialEq for QuerySchema
Auto Trait Implementations§
impl Freeze for QuerySchema
impl RefUnwindSafe for QuerySchema
impl Send for QuerySchema
impl Sync for QuerySchema
impl Unpin for QuerySchema
impl UnsafeUnpin for QuerySchema
impl UnwindSafe for QuerySchema
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