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