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