pub struct SplitScheduleExecutionReport {
pub ownership_updates: Vec<CellOwnershipUpdate>,
pub cell_migrations: Vec<CellMigrationReport>,
}Expand description
Result of executing a split schedule.
Fields§
§ownership_updates: Vec<CellOwnershipUpdate>Ownership changes applied.
cell_migrations: Vec<CellMigrationReport>Cell migration reports.
Trait Implementations§
Source§impl Clone for SplitScheduleExecutionReport
impl Clone for SplitScheduleExecutionReport
Source§fn clone(&self) -> SplitScheduleExecutionReport
fn clone(&self) -> SplitScheduleExecutionReport
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 SplitScheduleExecutionReport
impl Debug for SplitScheduleExecutionReport
Source§impl Default for SplitScheduleExecutionReport
impl Default for SplitScheduleExecutionReport
Source§fn default() -> SplitScheduleExecutionReport
fn default() -> SplitScheduleExecutionReport
Returns the “default value” for a type. Read more
impl StructuralPartialEq for SplitScheduleExecutionReport
Auto Trait Implementations§
impl Freeze for SplitScheduleExecutionReport
impl RefUnwindSafe for SplitScheduleExecutionReport
impl Send for SplitScheduleExecutionReport
impl Sync for SplitScheduleExecutionReport
impl Unpin for SplitScheduleExecutionReport
impl UnsafeUnpin for SplitScheduleExecutionReport
impl UnwindSafe for SplitScheduleExecutionReport
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