pub struct TypeFixedBinary {
pub system_metadata: Option<SystemTypeMetadata>,
pub type_: Value,
}
Expand description
TypeFixedBinary
JSON schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"system_metadata": {
"$ref": "#/definitions/system_type_metadata"
},
"type": {
"const": "FIXED_BINARY"
}
},
"additionalProperties": false
}
Fields§
§system_metadata: Option<SystemTypeMetadata>
§type_: Value
Implementations§
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 · 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<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<&TypeFixedBinary> for TypeFixedBinary
impl From<&TypeFixedBinary> for TypeFixedBinary
Source§fn from(value: &TypeFixedBinary) -> Self
fn from(value: &TypeFixedBinary) -> Self
Converts to this type from the input type.
Source§impl From<TypeFixedBinary> for DialectSupportedTypesItem
impl From<TypeFixedBinary> for DialectSupportedTypesItem
Source§fn from(value: TypeFixedBinary) -> Self
fn from(value: TypeFixedBinary) -> Self
Converts to this type from the input type.
Source§impl From<TypeFixedBinary> for TypeFixedBinary
impl From<TypeFixedBinary> for TypeFixedBinary
Source§fn from(value: TypeFixedBinary) -> Self
fn from(value: TypeFixedBinary) -> Self
Converts to this type from the input type.
Source§impl Serialize for TypeFixedBinary
impl Serialize 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<Self, ConversionError>
fn try_from(value: TypeFixedBinary) -> Result<Self, 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 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