pub struct TaskListEntry {
    pub task_id: Uuid,
    pub task_type: TaskType,
    pub status: TaskStatus,
}Fields§
§task_id: Uuid§task_type: TaskType§status: TaskStatusTrait Implementations§
Source§impl Clone for TaskListEntry
 
impl Clone for TaskListEntry
Source§fn clone(&self) -> TaskListEntry
 
fn clone(&self) -> TaskListEntry
Returns a copy 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 TaskListEntry
 
impl Debug for TaskListEntry
Source§impl<'de> Deserialize<'de> for TaskListEntry
 
impl<'de> Deserialize<'de> for TaskListEntry
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
Source§impl PartialEq for TaskListEntry
 
impl PartialEq for TaskListEntry
Source§impl Serialize for TaskListEntry
 
impl Serialize for TaskListEntry
impl Eq for TaskListEntry
impl StructuralPartialEq for TaskListEntry
Auto Trait Implementations§
impl Freeze for TaskListEntry
impl RefUnwindSafe for TaskListEntry
impl Send for TaskListEntry
impl Sync for TaskListEntry
impl Unpin for TaskListEntry
impl UnwindSafe for TaskListEntry
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