pub struct TaskDetailResponse {
pub id: i64,
pub task_id: i64,
pub name: String,
pub command: String,
pub created_at: String,
pub updated_at: String,
pub subsections: Vec<SubsectionDetail>,
}
Expand description
The response structure for detailed information about a task, including its subsections.
Fields§
§id: i64
The unique database ID of the task.
task_id: i64
The task’s ID (may be the same as id
).
name: String
The display name assigned to a task
command: String
The command associated with this task.
created_at: String
The creation timestamp of the task (RFC3339 format).
updated_at: String
The last update timestamp of the task (RFC3339 format).
subsections: Vec<SubsectionDetail>
The list of subsections for this task, with details and memo outputs.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskDetailResponse
impl RefUnwindSafe for TaskDetailResponse
impl Send for TaskDetailResponse
impl Sync for TaskDetailResponse
impl Unpin for TaskDetailResponse
impl UnwindSafe for TaskDetailResponse
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
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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