pub struct ChecklistTasksAdded {
pub checklist_message: Option<Box<Message>>,
pub tasks: Vec<ChecklistTask>,
}Expand description
Describes a service message about tasks added to a checklist.
Fields§
§checklist_message: Option<Box<Message>>Message containing the checklist to which the tasks were added. Note that the Message object in this field will not contain the reply_to_message field even if it itself is a reply
tasks: Vec<ChecklistTask>List of tasks added to the checklist
Trait Implementations§
Source§impl Clone for ChecklistTasksAdded
impl Clone for ChecklistTasksAdded
Source§fn clone(&self) -> ChecklistTasksAdded
fn clone(&self) -> ChecklistTasksAdded
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 ChecklistTasksAdded
impl Debug for ChecklistTasksAdded
Source§impl<'de> Deserialize<'de> for ChecklistTasksAdded
impl<'de> Deserialize<'de> for ChecklistTasksAdded
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChecklistTasksAdded, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ChecklistTasksAdded, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ChecklistTasksAdded
impl PartialEq for ChecklistTasksAdded
Source§impl Serialize for ChecklistTasksAdded
impl Serialize for ChecklistTasksAdded
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 ChecklistTasksAdded
Auto Trait Implementations§
impl Freeze for ChecklistTasksAdded
impl RefUnwindSafe for ChecklistTasksAdded
impl Send for ChecklistTasksAdded
impl Sync for ChecklistTasksAdded
impl Unpin for ChecklistTasksAdded
impl UnwindSafe for ChecklistTasksAdded
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