pub enum ReferenceColumnFormat {}
Expand description
ReferenceColumnFormat
JSON schema
{
"description": "Format of a column that refers to another table.",
"allOf": [
{
"$ref": "#/components/schemas/SimpleColumnFormat"
},
{
"type": "object",
"required": [
"table"
],
"properties": {
"table": {
"allOf": [
{
"description": "Reference to the table this column refers
to, if applicable.",
"additionalProperties": false
},
{
"$ref": "#/components/schemas/TableReference"
}
]
}
},
"additionalProperties": false
}
],
"x-schema-name": "ReferenceColumnFormat"
}
Trait Implementations§
Source§impl Clone for ReferenceColumnFormat
impl Clone for ReferenceColumnFormat
Source§fn clone(&self) -> ReferenceColumnFormat
fn clone(&self) -> ReferenceColumnFormat
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 ReferenceColumnFormat
impl Debug for ReferenceColumnFormat
Source§impl<'de> Deserialize<'de> for ReferenceColumnFormat
impl<'de> Deserialize<'de> for ReferenceColumnFormat
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<&ReferenceColumnFormat> for ReferenceColumnFormat
impl From<&ReferenceColumnFormat> for ReferenceColumnFormat
Source§fn from(value: &ReferenceColumnFormat) -> Self
fn from(value: &ReferenceColumnFormat) -> Self
Converts to this type from the input type.
Source§impl From<ReferenceColumnFormat> for ColumnFormat
impl From<ReferenceColumnFormat> for ColumnFormat
Source§fn from(value: ReferenceColumnFormat) -> Self
fn from(value: ReferenceColumnFormat) -> Self
Converts to this type from the input type.
Source§impl Hash for ReferenceColumnFormat
impl Hash for ReferenceColumnFormat
Source§impl Ord for ReferenceColumnFormat
impl Ord for ReferenceColumnFormat
Source§fn cmp(&self, other: &ReferenceColumnFormat) -> Ordering
fn cmp(&self, other: &ReferenceColumnFormat) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReferenceColumnFormat
impl PartialEq for ReferenceColumnFormat
Source§impl PartialOrd for ReferenceColumnFormat
impl PartialOrd for ReferenceColumnFormat
Source§impl Serialize for ReferenceColumnFormat
impl Serialize for ReferenceColumnFormat
impl Copy for ReferenceColumnFormat
impl Eq for ReferenceColumnFormat
impl StructuralPartialEq for ReferenceColumnFormat
Auto Trait Implementations§
impl Freeze for ReferenceColumnFormat
impl RefUnwindSafe for ReferenceColumnFormat
impl Send for ReferenceColumnFormat
impl Sync for ReferenceColumnFormat
impl Unpin for ReferenceColumnFormat
impl UnwindSafe for ReferenceColumnFormat
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