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