#[repr(u8)]pub enum PstatDatapaused {
PAUSE = 0,
FORCE = 1,
}Variants§
PAUSE = 0
Data is not currently paused.
FORCE = 1
A data pause has been requested and is now in force.
Implementations§
Trait Implementations§
Source§impl Clone for PstatDatapaused
impl Clone for PstatDatapaused
Source§fn clone(&self) -> PstatDatapaused
fn clone(&self) -> PstatDatapaused
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 PstatDatapaused
impl Debug for PstatDatapaused
Source§impl From<PstatDatapaused> for u8
impl From<PstatDatapaused> for u8
Source§fn from(val: PstatDatapaused) -> u8
fn from(val: PstatDatapaused) -> u8
Converts to this type from the input type.
Source§impl From<u8> for PstatDatapaused
impl From<u8> for PstatDatapaused
Source§fn from(val: u8) -> PstatDatapaused
fn from(val: u8) -> PstatDatapaused
Converts to this type from the input type.
Source§impl Ord for PstatDatapaused
impl Ord for PstatDatapaused
Source§fn cmp(&self, other: &PstatDatapaused) -> Ordering
fn cmp(&self, other: &PstatDatapaused) -> 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 PstatDatapaused
impl PartialEq for PstatDatapaused
Source§impl PartialOrd for PstatDatapaused
impl PartialOrd for PstatDatapaused
impl Copy for PstatDatapaused
impl Eq for PstatDatapaused
impl StructuralPartialEq for PstatDatapaused
Auto Trait Implementations§
impl Freeze for PstatDatapaused
impl RefUnwindSafe for PstatDatapaused
impl Send for PstatDatapaused
impl Sync for PstatDatapaused
impl Unpin for PstatDatapaused
impl UnwindSafe for PstatDatapaused
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