Enum BinKind
pub enum BinKind {
None,
Total,
Cumulative,
}
Expand description
Standard bin modifiers (i.e. None
, Total
, Cumulative
)
Some tokens are followed by values under certain conditions, and may also have multiple character tags to guide the interpretation of listed values.
For example, on the energy bins:
Tag example | Description |
---|---|
e | one unbounded energy bin (n=0 instead of 1) |
et | includes a “t otal” bin |
ec | energy bins are c umulative |
Variants§
Trait Implementations§
impl Copy for BinKind
impl StructuralPartialEq for BinKind
Auto Trait Implementations§
impl Freeze for BinKind
impl RefUnwindSafe for BinKind
impl Send for BinKind
impl Sync for BinKind
impl Unpin for BinKind
impl UnwindSafe for BinKind
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