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