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