pub enum RateRule {
Positive,
Zero,
ZeroOrPositive,
Absent,
}Expand description
Allowed BT-119 / line rate for the family.
Variants§
Positive
Rate must be greater than zero.
Zero
Rate must be present and zero.
ZeroOrPositive
Rate must be present and not negative.
Absent
Rate must be absent (O).
Trait Implementations§
impl Copy for RateRule
impl Eq for RateRule
impl StructuralPartialEq for RateRule
Auto Trait Implementations§
impl Freeze for RateRule
impl RefUnwindSafe for RateRule
impl Send for RateRule
impl Sync for RateRule
impl Unpin for RateRule
impl UnsafeUnpin for RateRule
impl UnwindSafe for RateRule
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