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