pub struct UpdateTaskRequest {Show 37 fields
pub title: Option<String>,
pub objective: Option<String>,
pub comment: Option<String>,
pub scope: Option<String>,
pub acceptance_criteria: Option<Vec<String>>,
pub verification_commands: Option<Vec<String>>,
pub test_cases: Option<Vec<String>>,
pub assigned_to: Option<String>,
pub status: Option<String>,
pub board_id: Option<String>,
pub column_id: Option<String>,
pub position: Option<i64>,
pub priority: Option<String>,
pub labels: Option<Vec<String>>,
pub assignee: Option<String>,
pub assigned_provider: Option<String>,
pub assigned_role: Option<String>,
pub assigned_specialist_id: Option<String>,
pub assigned_specialist_name: Option<String>,
pub trigger_session_id: Option<String>,
pub codebase_ids: Option<Vec<String>>,
pub verification_plan: Option<String>,
pub verification_verdict: Option<String>,
pub github_id: Option<String>,
pub github_number: Option<i64>,
pub github_url: Option<String>,
pub github_repo: Option<String>,
pub github_state: Option<String>,
pub last_sync_error: Option<String>,
pub dependencies: Option<Vec<String>>,
pub parallel_group: Option<String>,
pub completion_summary: Option<String>,
pub verification_report: Option<String>,
pub sync_to_github: Option<bool>,
pub retry_trigger: Option<bool>,
pub repo_path: Option<String>,
pub worktree_id: Option<Option<String>>,
}Expand description
Request to update an existing task
Fields§
§title: Option<String>§objective: Option<String>§comment: Option<String>§scope: Option<String>§acceptance_criteria: Option<Vec<String>>§verification_commands: Option<Vec<String>>§test_cases: Option<Vec<String>>§assigned_to: Option<String>§status: Option<String>§board_id: Option<String>§column_id: Option<String>§position: Option<i64>§priority: Option<String>§labels: Option<Vec<String>>§assignee: Option<String>§assigned_provider: Option<String>§assigned_role: Option<String>§assigned_specialist_id: Option<String>§assigned_specialist_name: Option<String>§trigger_session_id: Option<String>§codebase_ids: Option<Vec<String>>§verification_plan: Option<String>§verification_verdict: Option<String>§github_id: Option<String>§github_number: Option<i64>§github_url: Option<String>§github_repo: Option<String>§github_state: Option<String>§last_sync_error: Option<String>§dependencies: Option<Vec<String>>§parallel_group: Option<String>§completion_summary: Option<String>§verification_report: Option<String>§sync_to_github: Option<bool>§retry_trigger: Option<bool>§repo_path: Option<String>§worktree_id: Option<Option<String>>Trait Implementations§
Source§impl Debug for UpdateTaskRequest
impl Debug for UpdateTaskRequest
Source§impl<'de> Deserialize<'de> for UpdateTaskRequest
impl<'de> Deserialize<'de> for UpdateTaskRequest
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 UpdateTaskRequest
impl RefUnwindSafe for UpdateTaskRequest
impl Send for UpdateTaskRequest
impl Sync for UpdateTaskRequest
impl Unpin for UpdateTaskRequest
impl UnsafeUnpin for UpdateTaskRequest
impl UnwindSafe for UpdateTaskRequest
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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