pub struct TypeFixedBinary {
pub metadata: Map<String, Value>,
pub system_metadata: Option<SystemTypeMetadata>,
pub type_: Value,
}Expand description
TypeFixedBinary
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": "FIXED_BINARY"
}
},
"additionalProperties": false
}Fields§
§metadata: Map<String, Value>Arbitrary data created by the dialect author.
system_metadata: Option<SystemTypeMetadata>§type_: ValueImplementations§
Source§impl TypeFixedBinary
impl TypeFixedBinary
pub fn builder() -> TypeFixedBinary
Trait Implementations§
Source§impl Clone for TypeFixedBinary
impl Clone for TypeFixedBinary
Source§fn clone(&self) -> TypeFixedBinary
fn clone(&self) -> TypeFixedBinary
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 TypeFixedBinary
impl Debug for TypeFixedBinary
Source§impl<'de> Deserialize<'de> for TypeFixedBinary
impl<'de> Deserialize<'de> for TypeFixedBinary
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TypeFixedBinary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TypeFixedBinary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<TypeFixedBinary> for DialectSupportedTypesItem
impl From<TypeFixedBinary> for DialectSupportedTypesItem
Source§fn from(value: TypeFixedBinary) -> DialectSupportedTypesItem
fn from(value: TypeFixedBinary) -> DialectSupportedTypesItem
Converts to this type from the input type.
Source§impl From<TypeFixedBinary> for TypeFixedBinary
impl From<TypeFixedBinary> for TypeFixedBinary
Source§fn from(value: TypeFixedBinary) -> TypeFixedBinary
fn from(value: TypeFixedBinary) -> TypeFixedBinary
Converts to this type from the input type.
Source§impl PartialEq for TypeFixedBinary
impl PartialEq for TypeFixedBinary
Source§impl Serialize for TypeFixedBinary
impl Serialize for TypeFixedBinary
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for TypeFixedBinary
Source§impl TryFrom<TypeFixedBinary> for TypeFixedBinary
impl TryFrom<TypeFixedBinary> for TypeFixedBinary
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: TypeFixedBinary) -> Result<TypeFixedBinary, ConversionError>
fn try_from(value: TypeFixedBinary) -> Result<TypeFixedBinary, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for TypeFixedBinary
impl RefUnwindSafe for TypeFixedBinary
impl Send for TypeFixedBinary
impl Sync for TypeFixedBinary
impl Unpin for TypeFixedBinary
impl UnsafeUnpin for TypeFixedBinary
impl UnwindSafe for TypeFixedBinary
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