pub struct ExportTask {
pub id: i32,
pub name: String,
pub comment: String,
pub completeness: i32,
}Expand description
Serializable structure representing a task record for export.
This structure contains all relevant task information in a format suitable for external systems and analysis tools.
Fields§
§id: i32Unique task identifier from the database
name: StringHuman-readable task name or title
comment: StringOptional task description or comments
completeness: i32Task completion percentage (0-100)
Trait Implementations§
Source§impl Debug for ExportTask
impl Debug for ExportTask
Source§impl<'de> Deserialize<'de> for ExportTask
impl<'de> Deserialize<'de> for ExportTask
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
Auto Trait Implementations§
impl Freeze for ExportTask
impl RefUnwindSafe for ExportTask
impl Send for ExportTask
impl Sync for ExportTask
impl Unpin for ExportTask
impl UnsafeUnpin for ExportTask
impl UnwindSafe for ExportTask
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