pub struct TaskRecord {
pub id: String,
pub title: String,
pub status: String,
pub priority: u8,
pub blocked_by: Option<String>,
pub archived_at: Option<String>,
pub queued_task_id: Option<String>,
pub merge_loop_prompt: Option<String>,
pub created_at: String,
pub updated_at: String,
pub completed_at: Option<String>,
pub error_message: Option<String>,
}Fields§
§id: String§title: String§status: String§priority: u8§blocked_by: Option<String>§archived_at: Option<String>§queued_task_id: Option<String>§merge_loop_prompt: Option<String>§created_at: String§updated_at: String§completed_at: Option<String>§error_message: Option<String>Trait Implementations§
Source§impl Clone for TaskRecord
impl Clone for TaskRecord
Source§fn clone(&self) -> TaskRecord
fn clone(&self) -> TaskRecord
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 TaskRecord
impl Debug for TaskRecord
Source§impl<'de> Deserialize<'de> for TaskRecord
impl<'de> Deserialize<'de> for TaskRecord
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 TaskRecord
impl RefUnwindSafe for TaskRecord
impl Send for TaskRecord
impl Sync for TaskRecord
impl Unpin for TaskRecord
impl UnsafeUnpin for TaskRecord
impl UnwindSafe for TaskRecord
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