pub struct SplitScheduleView<'a> {
pub decisions: &'a [HotspotDecision],
pub actions: &'a [SplitAction],
pub skipped_no_target: usize,
pub skipped_no_cells: usize,
pub skipped_cooldown: usize,
pub skipped_target_severity: usize,
pub skipped_target_capacity: usize,
pub skipped_insufficient_improvement: usize,
}Expand description
Borrowed split schedule produced from reusable scheduler output slots.
Fields§
§decisions: &'a [HotspotDecision]Hotspot decisions in input sample order.
actions: &'a [SplitAction]Admitted split actions in deterministic source order.
skipped_no_target: usizeHot stations skipped because no distinct target existed.
skipped_no_cells: usizeHot stations skipped because no cells were proposed.
skipped_cooldown: usizeHot stations skipped because source station is inside split cooldown.
skipped_target_severity: usizeHot stations skipped because all targets were too warm or hot.
skipped_target_capacity: usizeHot stations skipped because target capacity would be exceeded.
skipped_insufficient_improvement: usizeHot stations skipped because target score improvement was too small.
Trait Implementations§
Source§impl<'a> Clone for SplitScheduleView<'a>
impl<'a> Clone for SplitScheduleView<'a>
Source§fn clone(&self) -> SplitScheduleView<'a>
fn clone(&self) -> SplitScheduleView<'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 SplitScheduleView<'a>
Source§impl<'a> Debug for SplitScheduleView<'a>
impl<'a> Debug for SplitScheduleView<'a>
impl<'a> Eq for SplitScheduleView<'a>
Source§impl From<SplitScheduleView<'_>> for SplitSchedule
impl From<SplitScheduleView<'_>> for SplitSchedule
Source§fn from(view: SplitScheduleView<'_>) -> Self
fn from(view: SplitScheduleView<'_>) -> Self
Converts to this type from the input type.
Source§impl<'a> PartialEq for SplitScheduleView<'a>
impl<'a> PartialEq for SplitScheduleView<'a>
impl<'a> StructuralPartialEq for SplitScheduleView<'a>
Auto Trait Implementations§
impl<'a> Freeze for SplitScheduleView<'a>
impl<'a> RefUnwindSafe for SplitScheduleView<'a>
impl<'a> Send for SplitScheduleView<'a>
impl<'a> Sync for SplitScheduleView<'a>
impl<'a> Unpin for SplitScheduleView<'a>
impl<'a> UnsafeUnpin for SplitScheduleView<'a>
impl<'a> UnwindSafe for SplitScheduleView<'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