pub struct TypeUnbound {
pub metadata: Map<String, Value>,
pub system_metadata: Option<SystemTypeMetadata>,
pub type_: Value,
}Expand description
TypeUnbound
JSON schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"metadata": {
"description": "Arbitrary data created by the dialect author.",
"type": "object"
},
"system_metadata": {
"$ref": "#/definitions/system_type_metadata"
},
"type": {
"const": "UNBOUND"
}
},
"additionalProperties": false
}Fields§
§metadata: Map<String, Value>Arbitrary data created by the dialect author.
system_metadata: Option<SystemTypeMetadata>§type_: ValueImplementations§
Source§impl TypeUnbound
impl TypeUnbound
pub fn builder() -> TypeUnbound
Trait Implementations§
Source§impl Clone for TypeUnbound
impl Clone for TypeUnbound
Source§fn clone(&self) -> TypeUnbound
fn clone(&self) -> TypeUnbound
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 TypeUnbound
impl Debug for TypeUnbound
Source§impl<'de> Deserialize<'de> for TypeUnbound
impl<'de> Deserialize<'de> for TypeUnbound
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 From<TypeUnbound> for DialectSupportedTypesItem
impl From<TypeUnbound> for DialectSupportedTypesItem
Source§fn from(value: TypeUnbound) -> Self
fn from(value: TypeUnbound) -> Self
Converts to this type from the input type.
Source§impl From<TypeUnbound> for TypeUnbound
impl From<TypeUnbound> for TypeUnbound
Source§fn from(value: TypeUnbound) -> Self
fn from(value: TypeUnbound) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TypeUnbound
impl PartialEq for TypeUnbound
Source§impl Serialize for TypeUnbound
impl Serialize for TypeUnbound
impl StructuralPartialEq for TypeUnbound
Source§impl TryFrom<TypeUnbound> for TypeUnbound
impl TryFrom<TypeUnbound> for TypeUnbound
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: TypeUnbound) -> Result<Self, ConversionError>
fn try_from(value: TypeUnbound) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for TypeUnbound
impl RefUnwindSafe for TypeUnbound
impl Send for TypeUnbound
impl Sync for TypeUnbound
impl Unpin for TypeUnbound
impl UnsafeUnpin for TypeUnbound
impl UnwindSafe for TypeUnbound
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