pub enum SelectColumnFormat {}
Expand description
SelectColumnFormat
JSON schema
{
"description": "Format of a select column.",
"allOf": [
{
"$ref": "#/components/schemas/SimpleColumnFormat"
},
{
"type": "object",
"additionalProperties": false
}
],
"x-schema-name": "SelectColumnFormat"
}
Trait Implementations§
Source§impl Clone for SelectColumnFormat
impl Clone for SelectColumnFormat
Source§fn clone(&self) -> SelectColumnFormat
fn clone(&self) -> SelectColumnFormat
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 SelectColumnFormat
impl Debug for SelectColumnFormat
Source§impl<'de> Deserialize<'de> for SelectColumnFormat
impl<'de> Deserialize<'de> for SelectColumnFormat
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<&SelectColumnFormat> for SelectColumnFormat
impl From<&SelectColumnFormat> for SelectColumnFormat
Source§fn from(value: &SelectColumnFormat) -> Self
fn from(value: &SelectColumnFormat) -> Self
Converts to this type from the input type.
Source§impl From<SelectColumnFormat> for ColumnFormat
impl From<SelectColumnFormat> for ColumnFormat
Source§fn from(value: SelectColumnFormat) -> Self
fn from(value: SelectColumnFormat) -> Self
Converts to this type from the input type.
Source§impl Hash for SelectColumnFormat
impl Hash for SelectColumnFormat
Source§impl Ord for SelectColumnFormat
impl Ord for SelectColumnFormat
Source§fn cmp(&self, other: &SelectColumnFormat) -> Ordering
fn cmp(&self, other: &SelectColumnFormat) -> 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 SelectColumnFormat
impl PartialEq for SelectColumnFormat
Source§impl PartialOrd for SelectColumnFormat
impl PartialOrd for SelectColumnFormat
Source§impl Serialize for SelectColumnFormat
impl Serialize for SelectColumnFormat
impl Copy for SelectColumnFormat
impl Eq for SelectColumnFormat
impl StructuralPartialEq for SelectColumnFormat
Auto Trait Implementations§
impl Freeze for SelectColumnFormat
impl RefUnwindSafe for SelectColumnFormat
impl Send for SelectColumnFormat
impl Sync for SelectColumnFormat
impl Unpin for SelectColumnFormat
impl UnwindSafe for SelectColumnFormat
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