#[repr(u8)]pub enum MdatactrlTxtrig {
EMPTY = 0,
QUARTER_OR_LESS = 1,
HALF_OR_LESS = 2,
FULL_OR_LESS = 3,
}Variants§
EMPTY = 0
Trigger when empty
QUARTER_OR_LESS = 1
Trigger when 1/4 full or less
HALF_OR_LESS = 2
Trigger when 1/2 full or less
FULL_OR_LESS = 3
Trigger when 1 less than full or less (default)
Implementations§
Trait Implementations§
Source§impl Clone for MdatactrlTxtrig
impl Clone for MdatactrlTxtrig
Source§fn clone(&self) -> MdatactrlTxtrig
fn clone(&self) -> MdatactrlTxtrig
Returns a duplicate of the value. Read more
1.0.0 · 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 MdatactrlTxtrig
impl Debug for MdatactrlTxtrig
Source§impl From<MdatactrlTxtrig> for u8
impl From<MdatactrlTxtrig> for u8
Source§fn from(val: MdatactrlTxtrig) -> u8
fn from(val: MdatactrlTxtrig) -> u8
Converts to this type from the input type.
Source§impl From<u8> for MdatactrlTxtrig
impl From<u8> for MdatactrlTxtrig
Source§fn from(val: u8) -> MdatactrlTxtrig
fn from(val: u8) -> MdatactrlTxtrig
Converts to this type from the input type.
Source§impl Ord for MdatactrlTxtrig
impl Ord for MdatactrlTxtrig
Source§fn cmp(&self, other: &MdatactrlTxtrig) -> Ordering
fn cmp(&self, other: &MdatactrlTxtrig) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MdatactrlTxtrig
impl PartialEq for MdatactrlTxtrig
Source§impl PartialOrd for MdatactrlTxtrig
impl PartialOrd for MdatactrlTxtrig
impl Copy for MdatactrlTxtrig
impl Eq for MdatactrlTxtrig
impl StructuralPartialEq for MdatactrlTxtrig
Auto Trait Implementations§
impl Freeze for MdatactrlTxtrig
impl RefUnwindSafe for MdatactrlTxtrig
impl Send for MdatactrlTxtrig
impl Sync for MdatactrlTxtrig
impl Unpin for MdatactrlTxtrig
impl UnwindSafe for MdatactrlTxtrig
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