pub enum DocumentCreationResultSourceDoc {}
Expand description
DocumentCreationResultSourceDoc
JSON schema
{
"allOf": [
{
"description": "Reference to a Coda doc from which this doc was
copied, if any.",
"type": "object",
"additionalProperties": false
},
{
"$ref": "#/components/schemas/DocReference"
}
]
}
Trait Implementations§
Source§impl Clone for DocumentCreationResultSourceDoc
impl Clone for DocumentCreationResultSourceDoc
Source§fn clone(&self) -> DocumentCreationResultSourceDoc
fn clone(&self) -> DocumentCreationResultSourceDoc
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<'de> Deserialize<'de> for DocumentCreationResultSourceDoc
impl<'de> Deserialize<'de> for DocumentCreationResultSourceDoc
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<&DocumentCreationResultSourceDoc> for DocumentCreationResultSourceDoc
impl From<&DocumentCreationResultSourceDoc> for DocumentCreationResultSourceDoc
Source§fn from(value: &DocumentCreationResultSourceDoc) -> Self
fn from(value: &DocumentCreationResultSourceDoc) -> Self
Converts to this type from the input type.
Source§impl Ord for DocumentCreationResultSourceDoc
impl Ord for DocumentCreationResultSourceDoc
Source§fn cmp(&self, other: &DocumentCreationResultSourceDoc) -> Ordering
fn cmp(&self, other: &DocumentCreationResultSourceDoc) -> 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 DocumentCreationResultSourceDoc
impl PartialEq for DocumentCreationResultSourceDoc
Source§fn eq(&self, other: &DocumentCreationResultSourceDoc) -> bool
fn eq(&self, other: &DocumentCreationResultSourceDoc) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for DocumentCreationResultSourceDoc
impl PartialOrd for DocumentCreationResultSourceDoc
impl Copy for DocumentCreationResultSourceDoc
impl Eq for DocumentCreationResultSourceDoc
impl StructuralPartialEq for DocumentCreationResultSourceDoc
Auto Trait Implementations§
impl Freeze for DocumentCreationResultSourceDoc
impl RefUnwindSafe for DocumentCreationResultSourceDoc
impl Send for DocumentCreationResultSourceDoc
impl Sync for DocumentCreationResultSourceDoc
impl Unpin for DocumentCreationResultSourceDoc
impl UnwindSafe for DocumentCreationResultSourceDoc
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