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