pub struct SessionTasksUpdateResult {
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 SessionTasksUpdateResult
impl Clone for SessionTasksUpdateResult
Source§fn clone(&self) -> SessionTasksUpdateResult
fn clone(&self) -> SessionTasksUpdateResult
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 SessionTasksUpdateResult
impl Debug for SessionTasksUpdateResult
Source§impl Default for SessionTasksUpdateResult
impl Default for SessionTasksUpdateResult
Source§fn default() -> SessionTasksUpdateResult
fn default() -> SessionTasksUpdateResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionTasksUpdateResult
impl<'de> Deserialize<'de> for SessionTasksUpdateResult
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 SessionTasksUpdateResult
impl RefUnwindSafe for SessionTasksUpdateResult
impl Send for SessionTasksUpdateResult
impl Sync for SessionTasksUpdateResult
impl Unpin for SessionTasksUpdateResult
impl UnsafeUnpin for SessionTasksUpdateResult
impl UnwindSafe for SessionTasksUpdateResult
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