pub struct UpdateTaskRequest<T: Serialize> {
pub name: Option<String>,
pub options: Option<TaskOptions>,
pub input: Option<T>,
pub title: Option<String>,
}Expand description
Body of the PUT /actor-tasks/{id} request.
All fields are optional; omitted fields leave the existing Task value unchanged.
Fields§
§name: Option<String>§options: Option<TaskOptions>§input: Option<T>§title: Option<String>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for UpdateTaskRequest<T>
impl<T> RefUnwindSafe for UpdateTaskRequest<T>where
Option<T>: RefUnwindSafe,
impl<T> Send for UpdateTaskRequest<T>
impl<T> Sync for UpdateTaskRequest<T>
impl<T> Unpin for UpdateTaskRequest<T>
impl<T> UnsafeUnpin for UpdateTaskRequest<T>where
Option<T>: UnsafeUnpin,
impl<T> UnwindSafe for UpdateTaskRequest<T>where
Option<T>: UnwindSafe,
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