pub struct BandCut {
pub key: &'static str,
pub label: &'static str,
pub default: f64,
}Expand description
One named cut point of a band criterion (spec §7.2).
Fields§
§key: &'static strStable name of this cut within the band.
label: &'static strHuman-facing label.
default: f64The engine’s conventional standard for this cut.
Trait Implementations§
impl Copy for BandCut
impl StructuralPartialEq for BandCut
Auto Trait Implementations§
impl Freeze for BandCut
impl RefUnwindSafe for BandCut
impl Send for BandCut
impl Sync for BandCut
impl Unpin for BandCut
impl UnsafeUnpin for BandCut
impl UnwindSafe for BandCut
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