pub enum SliderColumnFormat {}
Expand description
SliderColumnFormat
JSON schema
{
"description": "Format of a numeric column that renders as a slider.",
"allOf": [
{
"$ref": "#/components/schemas/SimpleColumnFormat"
},
{
"type": "object",
"properties": {
"displayType": {
"$ref": "#/components/schemas/SliderDisplayType"
},
"maximum": {
"allOf": [
{
"description": "The maximum allowed value for this
slider.",
"additionalProperties": false
},
{
"$ref": "#/components/schemas/NumberOrNumberFormula"
}
]
},
"minimum": {
"allOf": [
{
"description": "The minimum allowed value for this
slider.",
"additionalProperties": false
},
{
"$ref": "#/components/schemas/NumberOrNumberFormula"
}
]
},
"showValue": {
"description": "Whether the underyling numeric value is also
displayed.",
"examples": [
true
],
"type": "boolean"
},
"step": {
"allOf": [
{
"description": "The step size (numeric increment) for this
slider.",
"additionalProperties": false
},
{
"$ref": "#/components/schemas/NumberOrNumberFormula"
}
]
}
},
"additionalProperties": false
}
],
"x-schema-name": "SliderColumnFormat"
}
Trait Implementations§
Source§impl Clone for SliderColumnFormat
impl Clone for SliderColumnFormat
Source§fn clone(&self) -> SliderColumnFormat
fn clone(&self) -> SliderColumnFormat
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 SliderColumnFormat
impl Debug for SliderColumnFormat
Source§impl<'de> Deserialize<'de> for SliderColumnFormat
impl<'de> Deserialize<'de> for SliderColumnFormat
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<&SliderColumnFormat> for SliderColumnFormat
impl From<&SliderColumnFormat> for SliderColumnFormat
Source§fn from(value: &SliderColumnFormat) -> Self
fn from(value: &SliderColumnFormat) -> Self
Converts to this type from the input type.
Source§impl From<SliderColumnFormat> for ColumnFormat
impl From<SliderColumnFormat> for ColumnFormat
Source§fn from(value: SliderColumnFormat) -> Self
fn from(value: SliderColumnFormat) -> Self
Converts to this type from the input type.
Source§impl Hash for SliderColumnFormat
impl Hash for SliderColumnFormat
Source§impl Ord for SliderColumnFormat
impl Ord for SliderColumnFormat
Source§fn cmp(&self, other: &SliderColumnFormat) -> Ordering
fn cmp(&self, other: &SliderColumnFormat) -> 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 SliderColumnFormat
impl PartialEq for SliderColumnFormat
Source§impl PartialOrd for SliderColumnFormat
impl PartialOrd for SliderColumnFormat
Source§impl Serialize for SliderColumnFormat
impl Serialize for SliderColumnFormat
impl Copy for SliderColumnFormat
impl Eq for SliderColumnFormat
impl StructuralPartialEq for SliderColumnFormat
Auto Trait Implementations§
impl Freeze for SliderColumnFormat
impl RefUnwindSafe for SliderColumnFormat
impl Send for SliderColumnFormat
impl Sync for SliderColumnFormat
impl Unpin for SliderColumnFormat
impl UnwindSafe for SliderColumnFormat
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