pub struct RootComponentActivationRequest {
pub operation_id: [u8; 32],
pub plan_hash: [u8; 32],
pub expected_activated_component_count: u32,
pub expected_root_runtime_active: bool,
}Expand description
Coordinator-authenticated command advancing one bounded root activation step.
Fields§
§operation_id: [u8; 32]§plan_hash: [u8; 32]§expected_activated_component_count: u32§expected_root_runtime_active: boolTrait Implementations§
Source§impl Clone for RootComponentActivationRequest
impl Clone for RootComponentActivationRequest
Source§fn clone(&self) -> RootComponentActivationRequest
fn clone(&self) -> RootComponentActivationRequest
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 moreimpl Copy for RootComponentActivationRequest
Source§impl<'de> Deserialize<'de> for RootComponentActivationRequest
impl<'de> Deserialize<'de> for RootComponentActivationRequest
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 RootComponentActivationRequest
impl StructuralPartialEq for RootComponentActivationRequest
Auto Trait Implementations§
impl Freeze for RootComponentActivationRequest
impl RefUnwindSafe for RootComponentActivationRequest
impl Send for RootComponentActivationRequest
impl Sync for RootComponentActivationRequest
impl Unpin for RootComponentActivationRequest
impl UnsafeUnpin for RootComponentActivationRequest
impl UnwindSafe for RootComponentActivationRequest
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