pub enum StatusMode {
Program,
Run,
Monitor,
}
Expand description
An operation mode.
Variants§
Implementations§
source§impl StatusMode
impl StatusMode
sourcepub const fn parse(byte: u8) -> Result<Self, StatusParseError>
pub const fn parse(byte: u8) -> Result<Self, StatusParseError>
Parse the operation mode from a byte obtained using a StatusRead
command.
§Example
use hostlink::protocol::responses::status::StatusMode;
// These are the bytes you'd get from a StatusRead command if the PLC is in RUN mode.
let first_byte = 0b0011_0000;
let second_byte = 0b0011_0010;
// We need to create a single byte by using the first byte as the first 4 bits
// and the second byte as the next 4 bits.
let mode_byte = (first_byte & 0b1111_0000) | (second_byte & 0b0000_1111);
assert_eq!(mode_byte, 0b0011_0010 /* or 50 / 0x32 */);
let status = StatusMode::parse(mode_byte).unwrap();
assert_eq!(status, StatusMode::Run);
Trait Implementations§
source§impl Clone for StatusMode
impl Clone for StatusMode
source§fn clone(&self) -> StatusMode
fn clone(&self) -> StatusMode
Returns a copy 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 StatusMode
impl Debug for StatusMode
source§impl Display for StatusMode
impl Display for StatusMode
source§impl Hash for StatusMode
impl Hash for StatusMode
source§impl Ord for StatusMode
impl Ord for StatusMode
source§fn cmp(&self, other: &StatusMode) -> Ordering
fn cmp(&self, other: &StatusMode) -> 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 StatusMode
impl PartialEq for StatusMode
source§fn eq(&self, other: &StatusMode) -> bool
fn eq(&self, other: &StatusMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for StatusMode
impl PartialOrd for StatusMode
source§fn partial_cmp(&self, other: &StatusMode) -> Option<Ordering>
fn partial_cmp(&self, other: &StatusMode) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for StatusMode
impl Eq for StatusMode
impl StructuralPartialEq for StatusMode
Auto Trait Implementations§
impl Freeze for StatusMode
impl RefUnwindSafe for StatusMode
impl Send for StatusMode
impl Sync for StatusMode
impl Unpin for StatusMode
impl UnwindSafe for StatusMode
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