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