pub enum ButtonColumnFormat {}
Expand description
ButtonColumnFormat
JSON schema
{
"description": "Format of a button column.",
"allOf": [
{
"$ref": "#/components/schemas/SimpleColumnFormat"
},
{
"type": "object",
"properties": {
"action": {
"description": "Action formula for the button.",
"examples": [
"OpenUrl(\"www.google.com\")"
],
"type": "string"
},
"disableIf": {
"description": "DisableIf formula for the button.",
"examples": [
"False()"
],
"type": "string"
},
"label": {
"description": "Label formula for the button.",
"examples": [
"Click me"
],
"type": "string"
}
},
"additionalProperties": false
}
],
"x-schema-name": "ButtonColumnFormat"
}
Trait Implementations§
Source§impl Clone for ButtonColumnFormat
impl Clone for ButtonColumnFormat
Source§fn clone(&self) -> ButtonColumnFormat
fn clone(&self) -> ButtonColumnFormat
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 ButtonColumnFormat
impl Debug for ButtonColumnFormat
Source§impl<'de> Deserialize<'de> for ButtonColumnFormat
impl<'de> Deserialize<'de> for ButtonColumnFormat
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<&ButtonColumnFormat> for ButtonColumnFormat
impl From<&ButtonColumnFormat> for ButtonColumnFormat
Source§fn from(value: &ButtonColumnFormat) -> Self
fn from(value: &ButtonColumnFormat) -> Self
Converts to this type from the input type.
Source§impl From<ButtonColumnFormat> for ColumnFormat
impl From<ButtonColumnFormat> for ColumnFormat
Source§fn from(value: ButtonColumnFormat) -> Self
fn from(value: ButtonColumnFormat) -> Self
Converts to this type from the input type.
Source§impl Hash for ButtonColumnFormat
impl Hash for ButtonColumnFormat
Source§impl Ord for ButtonColumnFormat
impl Ord for ButtonColumnFormat
Source§fn cmp(&self, other: &ButtonColumnFormat) -> Ordering
fn cmp(&self, other: &ButtonColumnFormat) -> 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 ButtonColumnFormat
impl PartialEq for ButtonColumnFormat
Source§impl PartialOrd for ButtonColumnFormat
impl PartialOrd for ButtonColumnFormat
Source§impl Serialize for ButtonColumnFormat
impl Serialize for ButtonColumnFormat
impl Copy for ButtonColumnFormat
impl Eq for ButtonColumnFormat
impl StructuralPartialEq for ButtonColumnFormat
Auto Trait Implementations§
impl Freeze for ButtonColumnFormat
impl RefUnwindSafe for ButtonColumnFormat
impl Send for ButtonColumnFormat
impl Sync for ButtonColumnFormat
impl Unpin for ButtonColumnFormat
impl UnwindSafe for ButtonColumnFormat
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