pub struct ChangesetStatusChangedAction {
pub status: ChangesetStatus,
pub error: Option<ErrorInfo>,
}Expand description
The {@link ChangesetState.status} for this changeset transitioned (e.g.
computing → ready). The error payload is set together with status
whenever it transitions to {@link ChangesetStatus.Error | Error}.
Fields§
§status: ChangesetStatusNew computation lifecycle status.
error: Option<ErrorInfo>Cause when status === ChangesetStatus.Error; otherwise omitted.
Trait Implementations§
Source§impl Clone for ChangesetStatusChangedAction
impl Clone for ChangesetStatusChangedAction
Source§fn clone(&self) -> ChangesetStatusChangedAction
fn clone(&self) -> ChangesetStatusChangedAction
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 ChangesetStatusChangedAction
impl Debug for ChangesetStatusChangedAction
Source§impl<'de> Deserialize<'de> for ChangesetStatusChangedAction
impl<'de> Deserialize<'de> for ChangesetStatusChangedAction
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
Source§impl PartialEq for ChangesetStatusChangedAction
impl PartialEq for ChangesetStatusChangedAction
Source§fn eq(&self, other: &ChangesetStatusChangedAction) -> bool
fn eq(&self, other: &ChangesetStatusChangedAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChangesetStatusChangedAction
Auto Trait Implementations§
impl Freeze for ChangesetStatusChangedAction
impl RefUnwindSafe for ChangesetStatusChangedAction
impl Send for ChangesetStatusChangedAction
impl Sync for ChangesetStatusChangedAction
impl Unpin for ChangesetStatusChangedAction
impl UnsafeUnpin for ChangesetStatusChangedAction
impl UnwindSafe for ChangesetStatusChangedAction
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