pub struct IrGaugeBar {
pub form: String,
pub subject: String,
pub op: String,
pub threshold: String,
}Expand description
A lowered gauge bar. form is chance (P(field)) or stat
(p10/mean/…); op is >= (at least) or <= (at most);
threshold keeps its exact source text — consumers parse.
Fields§
§form: String§subject: String§op: String§threshold: StringTrait Implementations§
Source§impl Clone for IrGaugeBar
impl Clone for IrGaugeBar
Source§fn clone(&self) -> IrGaugeBar
fn clone(&self) -> IrGaugeBar
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 moreSource§impl Debug for IrGaugeBar
impl Debug for IrGaugeBar
impl Eq for IrGaugeBar
Source§impl PartialEq for IrGaugeBar
impl PartialEq for IrGaugeBar
impl StructuralPartialEq for IrGaugeBar
Auto Trait Implementations§
impl Freeze for IrGaugeBar
impl RefUnwindSafe for IrGaugeBar
impl Send for IrGaugeBar
impl Sync for IrGaugeBar
impl Unpin for IrGaugeBar
impl UnsafeUnpin for IrGaugeBar
impl UnwindSafe for IrGaugeBar
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