pub struct FleetStateCommandResult<T> {
pub change: SetStateResponse<T>,
pub propagation: StateCascadeReport,
pub reconciliation_error: Option<Error>,
}Expand description
Local mutation receipt and the independently observed downstream results.
Fields§
§change: SetStateResponse<T>§propagation: StateCascadeReport§reconciliation_error: Option<Error>Trait Implementations§
Source§impl<T: CandidType> CandidType for FleetStateCommandResult<T>
impl<T: CandidType> CandidType for FleetStateCommandResult<T>
Source§impl<T: Clone> Clone for FleetStateCommandResult<T>
impl<T: Clone> Clone for FleetStateCommandResult<T>
Source§fn clone(&self) -> FleetStateCommandResult<T>
fn clone(&self) -> FleetStateCommandResult<T>
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<T: Debug> Debug for FleetStateCommandResult<T>
impl<T: Debug> Debug for FleetStateCommandResult<T>
Source§impl<'de, T> Deserialize<'de> for FleetStateCommandResult<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for FleetStateCommandResult<T>where
T: Deserialize<'de>,
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
impl<T: Eq> Eq for FleetStateCommandResult<T>
Source§impl<T: PartialEq> PartialEq for FleetStateCommandResult<T>
impl<T: PartialEq> PartialEq for FleetStateCommandResult<T>
impl<T: PartialEq> StructuralPartialEq for FleetStateCommandResult<T>
Auto Trait Implementations§
impl<T> Freeze for FleetStateCommandResult<T>where
SetStateResponse<T>: Freeze,
impl<T> RefUnwindSafe for FleetStateCommandResult<T>where
SetStateResponse<T>: RefUnwindSafe,
impl<T> Send for FleetStateCommandResult<T>where
SetStateResponse<T>: Send,
impl<T> Sync for FleetStateCommandResult<T>where
SetStateResponse<T>: Sync,
impl<T> Unpin for FleetStateCommandResult<T>where
SetStateResponse<T>: Unpin,
impl<T> UnsafeUnpin for FleetStateCommandResult<T>where
SetStateResponse<T>: UnsafeUnpin,
impl<T> UnwindSafe for FleetStateCommandResult<T>where
SetStateResponse<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