pub struct CreateNotionTaskResult {
pub url: String,
pub task_title: Option<String>,
}Expand description
Response from creating a Notion task.
Fields§
§url: StringCreated Notion task URL.
task_title: Option<String>Created task title, when returned by the integration.
Trait Implementations§
Source§impl Clone for CreateNotionTaskResult
impl Clone for CreateNotionTaskResult
Source§fn clone(&self) -> CreateNotionTaskResult
fn clone(&self) -> CreateNotionTaskResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateNotionTaskResult
impl Debug for CreateNotionTaskResult
Source§impl<'de> Deserialize<'de> for CreateNotionTaskResult
impl<'de> Deserialize<'de> for CreateNotionTaskResult
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
impl Eq for CreateNotionTaskResult
Source§impl PartialEq for CreateNotionTaskResult
impl PartialEq for CreateNotionTaskResult
Source§fn eq(&self, other: &CreateNotionTaskResult) -> bool
fn eq(&self, other: &CreateNotionTaskResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreateNotionTaskResult
impl Serialize for CreateNotionTaskResult
impl StructuralPartialEq for CreateNotionTaskResult
Auto Trait Implementations§
impl Freeze for CreateNotionTaskResult
impl RefUnwindSafe for CreateNotionTaskResult
impl Send for CreateNotionTaskResult
impl Sync for CreateNotionTaskResult
impl Unpin for CreateNotionTaskResult
impl UnsafeUnpin for CreateNotionTaskResult
impl UnwindSafe for CreateNotionTaskResult
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