#[repr(u8)]pub enum Slvpending {
IN_PROGRESS = 0,
PENDING = 1,
}Variants§
IN_PROGRESS = 0
In progress. The Slave function does not currently need service.
PENDING = 1
Pending. The Slave function needs service. Information on what is needed can be found in the adjacent SLVSTATE field.
Implementations§
Source§impl Slvpending
impl Slvpending
Trait Implementations§
Source§impl Clone for Slvpending
impl Clone for Slvpending
Source§fn clone(&self) -> Slvpending
fn clone(&self) -> Slvpending
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 Slvpending
impl Debug for Slvpending
Source§impl From<Slvpending> for u8
impl From<Slvpending> for u8
Source§fn from(val: Slvpending) -> u8
fn from(val: Slvpending) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Slvpending
impl From<u8> for Slvpending
Source§fn from(val: u8) -> Slvpending
fn from(val: u8) -> Slvpending
Converts to this type from the input type.
Source§impl Ord for Slvpending
impl Ord for Slvpending
Source§fn cmp(&self, other: &Slvpending) -> Ordering
fn cmp(&self, other: &Slvpending) -> 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 Slvpending
impl PartialEq for Slvpending
Source§impl PartialOrd for Slvpending
impl PartialOrd for Slvpending
impl Copy for Slvpending
impl Eq for Slvpending
impl StructuralPartialEq for Slvpending
Auto Trait Implementations§
impl Freeze for Slvpending
impl RefUnwindSafe for Slvpending
impl Send for Slvpending
impl Sync for Slvpending
impl Unpin for Slvpending
impl UnwindSafe for Slvpending
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