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