pub struct CreateNotionTaskInput {
pub space_id: i64,
pub message_id: i64,
pub chat_id: i64,
pub peer: PeerId,
}Expand description
Input for creating a Notion task from a message.
Fields§
§space_id: i64Source space id.
message_id: i64Source message id.
chat_id: i64Source chat id.
peer: PeerIdSource peer.
Implementations§
Trait Implementations§
Source§impl Clone for CreateNotionTaskInput
impl Clone for CreateNotionTaskInput
Source§fn clone(&self) -> CreateNotionTaskInput
fn clone(&self) -> CreateNotionTaskInput
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 CreateNotionTaskInput
impl Debug for CreateNotionTaskInput
impl Eq for CreateNotionTaskInput
Source§impl PartialEq for CreateNotionTaskInput
impl PartialEq for CreateNotionTaskInput
Source§fn eq(&self, other: &CreateNotionTaskInput) -> bool
fn eq(&self, other: &CreateNotionTaskInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateNotionTaskInput
Auto Trait Implementations§
impl Freeze for CreateNotionTaskInput
impl RefUnwindSafe for CreateNotionTaskInput
impl Send for CreateNotionTaskInput
impl Sync for CreateNotionTaskInput
impl Unpin for CreateNotionTaskInput
impl UnsafeUnpin for CreateNotionTaskInput
impl UnwindSafe for CreateNotionTaskInput
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