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