pub struct TaskClientUpdateFailed {
pub code: Option<String>,
pub error: String,
pub kind: TaskClientUpdateFailedKind,
pub message: Option<String>,
}Expand description
Reports terminal failure.
Fields§
§code: Option<String>Optional owner-supplied terminal failure code
error: StringHuman-readable terminal failure message
kind: TaskClientUpdateFailedKindClient task update variant discriminator.
message: Option<String>Optional final progress message
Trait Implementations§
Source§impl Clone for TaskClientUpdateFailed
impl Clone for TaskClientUpdateFailed
Source§fn clone(&self) -> TaskClientUpdateFailed
fn clone(&self) -> TaskClientUpdateFailed
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 TaskClientUpdateFailed
impl Debug for TaskClientUpdateFailed
Source§impl Default for TaskClientUpdateFailed
impl Default for TaskClientUpdateFailed
Source§fn default() -> TaskClientUpdateFailed
fn default() -> TaskClientUpdateFailed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskClientUpdateFailed
impl<'de> Deserialize<'de> for TaskClientUpdateFailed
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 TaskClientUpdateFailed
impl RefUnwindSafe for TaskClientUpdateFailed
impl Send for TaskClientUpdateFailed
impl Sync for TaskClientUpdateFailed
impl Unpin for TaskClientUpdateFailed
impl UnsafeUnpin for TaskClientUpdateFailed
impl UnwindSafe for TaskClientUpdateFailed
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