pub struct ZoneBudgetConfig {
pub system_pct: f32,
pub critical_pct: f32,
pub primary_pct: f32,
pub supporting_pct: f32,
pub reference_pct: f32,
}Expand description
Configuration for zone budget percentages.
Fields§
§system_pct: f32Fraction of total budget for system zone.
critical_pct: f32Fraction of total budget for critical zone.
primary_pct: f32Fraction of total budget for primary zone.
supporting_pct: f32Fraction of total budget for supporting zone.
reference_pct: f32Fraction of total budget for reference zone.
Trait Implementations§
Source§impl Clone for ZoneBudgetConfig
impl Clone for ZoneBudgetConfig
Source§fn clone(&self) -> ZoneBudgetConfig
fn clone(&self) -> ZoneBudgetConfig
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 ZoneBudgetConfig
impl Debug for ZoneBudgetConfig
Auto Trait Implementations§
impl Freeze for ZoneBudgetConfig
impl RefUnwindSafe for ZoneBudgetConfig
impl Send for ZoneBudgetConfig
impl Sync for ZoneBudgetConfig
impl Unpin for ZoneBudgetConfig
impl UnsafeUnpin for ZoneBudgetConfig
impl UnwindSafe for ZoneBudgetConfig
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