pub struct ScopeTransitionOutcome {
pub transition_id: ScopeTransitionId,
pub applied: bool,
pub physical_removals: BTreeSet<EntityRef>,
pub quarantined_operations: BTreeSet<OperationId>,
}Expand description
Result of one idempotent transition application.
Fields§
§transition_id: ScopeTransitionId§applied: bool§physical_removals: BTreeSet<EntityRef>§quarantined_operations: BTreeSet<OperationId>Trait Implementations§
Source§impl Clone for ScopeTransitionOutcome
impl Clone for ScopeTransitionOutcome
Source§fn clone(&self) -> ScopeTransitionOutcome
fn clone(&self) -> ScopeTransitionOutcome
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 ScopeTransitionOutcome
impl Debug for ScopeTransitionOutcome
Source§impl<'de> Deserialize<'de> for ScopeTransitionOutcome
impl<'de> Deserialize<'de> for ScopeTransitionOutcome
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 Eq for ScopeTransitionOutcome
Source§impl PartialEq for ScopeTransitionOutcome
impl PartialEq for ScopeTransitionOutcome
Source§impl Serialize for ScopeTransitionOutcome
impl Serialize for ScopeTransitionOutcome
impl StructuralPartialEq for ScopeTransitionOutcome
Auto Trait Implementations§
impl Freeze for ScopeTransitionOutcome
impl RefUnwindSafe for ScopeTransitionOutcome
impl Send for ScopeTransitionOutcome
impl Sync for ScopeTransitionOutcome
impl Unpin for ScopeTransitionOutcome
impl UnsafeUnpin for ScopeTransitionOutcome
impl UnwindSafe for ScopeTransitionOutcome
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