pub struct ReconstructionReceipt {
pub original_id: PartitionId,
pub checkpoint: RecoveryCheckpoint,
pub was_hibernated: bool,
}Expand description
A receipt for reconstructing a hibernated partition.
Fields§
§original_id: PartitionIdOriginal partition ID.
checkpoint: RecoveryCheckpointCheckpoint from which to reconstruct.
was_hibernated: boolWhether the partition was hibernated (vs destroyed).
Trait Implementations§
Source§impl Clone for ReconstructionReceipt
impl Clone for ReconstructionReceipt
Source§fn clone(&self) -> ReconstructionReceipt
fn clone(&self) -> ReconstructionReceipt
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 ReconstructionReceipt
Auto Trait Implementations§
impl Freeze for ReconstructionReceipt
impl RefUnwindSafe for ReconstructionReceipt
impl Send for ReconstructionReceipt
impl Sync for ReconstructionReceipt
impl Unpin for ReconstructionReceipt
impl UnsafeUnpin for ReconstructionReceipt
impl UnwindSafe for ReconstructionReceipt
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