pub struct MessageChecklistTasksDone {
pub checklist_message_id: i64,
pub marked_as_done_task_ids: Vec<i32>,
pub marked_as_not_done_task_ids: Vec<i32>,
}Expand description
Some tasks from a checklist were marked as done or not done
Fields§
§checklist_message_id: i64Identifier of the message with the checklist; may be 0 or an identifier of a deleted message
marked_as_done_task_ids: Vec<i32>Identifiers of tasks that were marked as done
marked_as_not_done_task_ids: Vec<i32>Identifiers of tasks that were marked as not done
Trait Implementations§
Source§impl Clone for MessageChecklistTasksDone
impl Clone for MessageChecklistTasksDone
Source§fn clone(&self) -> MessageChecklistTasksDone
fn clone(&self) -> MessageChecklistTasksDone
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 MessageChecklistTasksDone
impl Debug for MessageChecklistTasksDone
Source§impl Default for MessageChecklistTasksDone
impl Default for MessageChecklistTasksDone
Source§fn default() -> MessageChecklistTasksDone
fn default() -> MessageChecklistTasksDone
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageChecklistTasksDone
impl<'de> Deserialize<'de> for MessageChecklistTasksDone
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 StructuralPartialEq for MessageChecklistTasksDone
Auto Trait Implementations§
impl Freeze for MessageChecklistTasksDone
impl RefUnwindSafe for MessageChecklistTasksDone
impl Send for MessageChecklistTasksDone
impl Sync for MessageChecklistTasksDone
impl Unpin for MessageChecklistTasksDone
impl UnsafeUnpin for MessageChecklistTasksDone
impl UnwindSafe for MessageChecklistTasksDone
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