Enum Modifier
pub enum Modifier {
None = 0,
Star = 1,
Plus = 2,
}
Expand description
Tally modifier
The Tally can be any type of standard F
tally, and may have a modifier
on the input card such as *F...
or +F...
.
A tally header contains TALLY <id> <i> <j> <k>
, where k
is modifier
applied.
This type is stored as a Modifier with enumeration explicitly set to match MCTAL identifiers.
Value | Modifier |
---|---|
0 | None |
1 | Star |
2 | Plus |
This may change the interpretation of result units. See Tally for details.
Variants§
Trait Implementations§
impl StructuralPartialEq for Modifier
Auto Trait Implementations§
impl Freeze for Modifier
impl RefUnwindSafe for Modifier
impl Send for Modifier
impl Sync for Modifier
impl Unpin for Modifier
impl UnwindSafe for Modifier
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