pub struct CorrelationScheduleEntry {
pub stage_id: i32,
pub profile_name: String,
}Expand description
Maps a stage to its active correlation profile name.
When CorrelationModel::schedule is non-empty, each stage that
requires a non-default correlation profile has an entry here. Stages
without an entry use the profile named "default" if present, or the
sole profile if only one profile exists.
See Input Scenarios §5.
Fields§
§stage_id: i32Stage index (0-based within System::stages) this entry applies to.
profile_name: StringName of the correlation profile active for this stage.
Must match a key in CorrelationModel::profiles.
Trait Implementations§
Source§impl Clone for CorrelationScheduleEntry
impl Clone for CorrelationScheduleEntry
Source§fn clone(&self) -> CorrelationScheduleEntry
fn clone(&self) -> CorrelationScheduleEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 CorrelationScheduleEntry
impl Debug for CorrelationScheduleEntry
Source§impl PartialEq for CorrelationScheduleEntry
impl PartialEq for CorrelationScheduleEntry
impl Eq for CorrelationScheduleEntry
impl StructuralPartialEq for CorrelationScheduleEntry
Auto Trait Implementations§
impl Freeze for CorrelationScheduleEntry
impl RefUnwindSafe for CorrelationScheduleEntry
impl Send for CorrelationScheduleEntry
impl Sync for CorrelationScheduleEntry
impl Unpin for CorrelationScheduleEntry
impl UnsafeUnpin for CorrelationScheduleEntry
impl UnwindSafe for CorrelationScheduleEntry
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