pub struct ComponentRegistryActivePartitionResponse {
pub allocation_operation_id: [u8; 32],
pub prepared: ComponentRegistryPartitionResponse,
pub activation: ComponentRegistryPartitionResponse,
pub current: ComponentRegistryPartitionResponse,
}Expand description
ComponentRegistryActivePartitionResponse
Root-qualified immutable top-level activation receipt plus the validated current partition.
Later descendant work may advance current without changing activation.
Fields§
§allocation_operation_id: [u8; 32]§prepared: ComponentRegistryPartitionResponse§activation: ComponentRegistryPartitionResponse§current: ComponentRegistryPartitionResponseTrait Implementations§
Source§impl Clone for ComponentRegistryActivePartitionResponse
impl Clone for ComponentRegistryActivePartitionResponse
Source§fn clone(&self) -> ComponentRegistryActivePartitionResponse
fn clone(&self) -> ComponentRegistryActivePartitionResponse
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<'de> Deserialize<'de> for ComponentRegistryActivePartitionResponse
impl<'de> Deserialize<'de> for ComponentRegistryActivePartitionResponse
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 ComponentRegistryActivePartitionResponse
impl StructuralPartialEq for ComponentRegistryActivePartitionResponse
Auto Trait Implementations§
impl Freeze for ComponentRegistryActivePartitionResponse
impl RefUnwindSafe for ComponentRegistryActivePartitionResponse
impl Send for ComponentRegistryActivePartitionResponse
impl Sync for ComponentRegistryActivePartitionResponse
impl Unpin for ComponentRegistryActivePartitionResponse
impl UnsafeUnpin for ComponentRegistryActivePartitionResponse
impl UnwindSafe for ComponentRegistryActivePartitionResponse
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