pub enum PushButtonResult {}
Expand description
PushButtonResult
JSON schema
{
"description": "The result of a push button.",
"allOf": [
{
"$ref": "#/components/schemas/DocumentMutateResponse"
},
{
"type": "object",
"required": [
"columnId",
"rowId"
],
"properties": {
"columnId": {
"description": "ID of the column where the button exists.",
"examples": [
"i-tuVwxYz"
],
"type": "string"
},
"rowId": {
"description": "ID of the row where the button exists.",
"examples": [
"i-tuVwxYz"
],
"type": "string"
}
},
"additionalProperties": false
}
],
"x-schema-name": "PushButtonResult"
}
Trait Implementations§
Source§impl Clone for PushButtonResult
impl Clone for PushButtonResult
Source§fn clone(&self) -> PushButtonResult
fn clone(&self) -> PushButtonResult
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 PushButtonResult
impl Debug for PushButtonResult
Source§impl<'de> Deserialize<'de> for PushButtonResult
impl<'de> Deserialize<'de> for PushButtonResult
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<&PushButtonResult> for PushButtonResult
impl From<&PushButtonResult> for PushButtonResult
Source§fn from(value: &PushButtonResult) -> Self
fn from(value: &PushButtonResult) -> Self
Converts to this type from the input type.
Source§impl Hash for PushButtonResult
impl Hash for PushButtonResult
Source§impl Ord for PushButtonResult
impl Ord for PushButtonResult
Source§fn cmp(&self, other: &PushButtonResult) -> Ordering
fn cmp(&self, other: &PushButtonResult) -> 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 PushButtonResult
impl PartialEq for PushButtonResult
Source§impl PartialOrd for PushButtonResult
impl PartialOrd for PushButtonResult
Source§impl Serialize for PushButtonResult
impl Serialize for PushButtonResult
impl Copy for PushButtonResult
impl Eq for PushButtonResult
impl StructuralPartialEq for PushButtonResult
Auto Trait Implementations§
impl Freeze for PushButtonResult
impl RefUnwindSafe for PushButtonResult
impl Send for PushButtonResult
impl Sync for PushButtonResult
impl Unpin for PushButtonResult
impl UnwindSafe for PushButtonResult
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