pub struct TasksUpdateResult {
pub applied: bool,
pub duplicate: bool,
pub task: TaskClientInfo,
}Expand description
Result of publishing a client-owned task update.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§applied: boolWhether this invocation changed task state
duplicate: boolWhether this invocation repeated the latest accepted update
task: TaskClientInfoAuthoritative task after processing the update
Trait Implementations§
Source§impl Clone for TasksUpdateResult
impl Clone for TasksUpdateResult
Source§fn clone(&self) -> TasksUpdateResult
fn clone(&self) -> TasksUpdateResult
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 moreSource§impl Debug for TasksUpdateResult
impl Debug for TasksUpdateResult
Source§impl Default for TasksUpdateResult
impl Default for TasksUpdateResult
Source§fn default() -> TasksUpdateResult
fn default() -> TasksUpdateResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TasksUpdateResult
impl<'de> Deserialize<'de> for TasksUpdateResult
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 TasksUpdateResult
impl RefUnwindSafe for TasksUpdateResult
impl Send for TasksUpdateResult
impl Sync for TasksUpdateResult
impl Unpin for TasksUpdateResult
impl UnsafeUnpin for TasksUpdateResult
impl UnwindSafe for TasksUpdateResult
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