pub struct TaskBriefRow {Show 13 fields
pub task_id: String,
pub intake_event_id: String,
pub title: String,
pub intent: TaskBriefIntent,
pub source_url: String,
pub status: TaskBriefStatus,
pub branch: String,
pub iterations: i64,
pub artifacts: String,
pub decisions: String,
pub last_feedback: Option<String>,
pub created_at: String,
pub updated_at: String,
}Expand description
A task brief row.
Fields§
§task_id: String§intake_event_id: String§title: String§intent: TaskBriefIntent§source_url: String§status: TaskBriefStatus§branch: String§iterations: i64§artifacts: String§decisions: String§last_feedback: Option<String>§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for TaskBriefRow
impl Clone for TaskBriefRow
Source§fn clone(&self) -> TaskBriefRow
fn clone(&self) -> TaskBriefRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TaskBriefRow
impl RefUnwindSafe for TaskBriefRow
impl Send for TaskBriefRow
impl Sync for TaskBriefRow
impl Unpin for TaskBriefRow
impl UnsafeUnpin for TaskBriefRow
impl UnwindSafe for TaskBriefRow
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