pub struct ChecklistTasksDone {
pub checklist_message: Option<Box<Message>>,
pub marked_as_done_task_ids: Option<Vec<ChecklistTaskId>>,
pub marked_as_not_done_task_ids: Option<Vec<ChecklistTaskId>>,
}Expand description
Describes a service message about checklist tasks marked as done or not done.
Fields§
§checklist_message: Option<Box<Message>>Message containing the checklist whose tasks were marked as done or not done. Note that the Message object in this field will not contain the reply_to_message field even if it itself is a reply
marked_as_done_task_ids: Option<Vec<ChecklistTaskId>>Identifiers of the tasks that were marked as done
marked_as_not_done_task_ids: Option<Vec<ChecklistTaskId>>Identifiers of the tasks that were marked as not done
Trait Implementations§
Source§impl Clone for ChecklistTasksDone
impl Clone for ChecklistTasksDone
Source§fn clone(&self) -> ChecklistTasksDone
fn clone(&self) -> ChecklistTasksDone
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 ChecklistTasksDone
impl Debug for ChecklistTasksDone
Source§impl<'de> Deserialize<'de> for ChecklistTasksDone
impl<'de> Deserialize<'de> for ChecklistTasksDone
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChecklistTasksDone, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChecklistTasksDone, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ChecklistTasksDone
impl PartialEq for ChecklistTasksDone
Source§impl Serialize for ChecklistTasksDone
impl Serialize for ChecklistTasksDone
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ChecklistTasksDone
Auto Trait Implementations§
impl Freeze for ChecklistTasksDone
impl RefUnwindSafe for ChecklistTasksDone
impl Send for ChecklistTasksDone
impl Sync for ChecklistTasksDone
impl Unpin for ChecklistTasksDone
impl UnwindSafe for ChecklistTasksDone
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Erasable for T
impl<T> Erasable for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more