pub struct SplitScheduleExecutionView<'a> {
pub ownership_updates: &'a [CellOwnershipUpdate],
pub cell_migrations: &'a [CellMigrationReport],
}Expand description
Borrowed result of executing a split schedule into reusable storage.
Fields§
§ownership_updates: &'a [CellOwnershipUpdate]Ownership changes applied during this pass.
cell_migrations: &'a [CellMigrationReport]Cell migration reports produced during this pass.
Trait Implementations§
Source§impl<'a> Clone for SplitScheduleExecutionView<'a>
impl<'a> Clone for SplitScheduleExecutionView<'a>
Source§fn clone(&self) -> SplitScheduleExecutionView<'a>
fn clone(&self) -> SplitScheduleExecutionView<'a>
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<'a> Copy for SplitScheduleExecutionView<'a>
Source§impl<'a> Debug for SplitScheduleExecutionView<'a>
impl<'a> Debug for SplitScheduleExecutionView<'a>
Source§impl<'a> PartialEq for SplitScheduleExecutionView<'a>
impl<'a> PartialEq for SplitScheduleExecutionView<'a>
impl<'a> StructuralPartialEq for SplitScheduleExecutionView<'a>
Auto Trait Implementations§
impl<'a> Freeze for SplitScheduleExecutionView<'a>
impl<'a> RefUnwindSafe for SplitScheduleExecutionView<'a>
impl<'a> Send for SplitScheduleExecutionView<'a>
impl<'a> Sync for SplitScheduleExecutionView<'a>
impl<'a> Unpin for SplitScheduleExecutionView<'a>
impl<'a> UnsafeUnpin for SplitScheduleExecutionView<'a>
impl<'a> UnwindSafe for SplitScheduleExecutionView<'a>
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