[]Struct clyde_3g_eps_api::StatusCode

pub struct StatusCode { /* fields omitted */ }

EPS Board Status Codes

Methods

impl StatusCode

Last Command Failed

Watchdog Error

Bad Command Data

Bad Command Channel

Error Reading EEPROM

Power On Reset

Brown Out Reset

Returns an empty set of flags.

Returns the set containing all flags.

Returns the raw value of the flags currently stored.

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

Returns true if no flags are currently stored.

Returns true if all flags are currently set.

Returns true if there are flags common to both self and other.

Returns true all of the flags in other are contained within self.

Inserts the specified flags in-place.

Removes the specified flags in-place.

Toggles the specified flags in-place.

Inserts or removes the specified flags depending on the passed value.

impl StatusCode
[src]

Convert the flags byte into a vector containing the string representations of all flags present.

Examples

use eps_api::EpsResult;
use clyde_3g_eps_api::*;

let flags = StatusCode::BAD_COMMAND_DATA | StatusCode::POWER_ON_RESET;

let conv = flags.to_vec();

assert_eq!(conv, vec!["BAD_COMMAND_DATA", "POWER_ON_RESET"]);

Trait Implementations

impl PartialOrd<StatusCode> for StatusCode

impl Default for StatusCode
[src]

impl Ord for StatusCode

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialEq<StatusCode> for StatusCode

impl Clone for StatusCode

Performs copy-assignment from source. Read more

impl Extend<StatusCode> for StatusCode

impl Copy for StatusCode

impl Eq for StatusCode

impl Octal for StatusCode

impl Binary for StatusCode

impl Debug for StatusCode

impl UpperHex for StatusCode

impl LowerHex for StatusCode

impl Hash for StatusCode

Feeds a slice of this type into the given [Hasher]. Read more

impl Sub<StatusCode> for StatusCode

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign<StatusCode> for StatusCode

Disables all flags enabled in the set.

impl Not for StatusCode

The resulting type after applying the ! operator.

Returns the complement of this set of flags.

impl BitAnd<StatusCode> for StatusCode

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitOr<StatusCode> for StatusCode

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitXor<StatusCode> for StatusCode

The resulting type after applying the ^ operator.

Returns the left flags, but with all the right flags toggled.

impl BitAndAssign<StatusCode> for StatusCode

Disables all flags disabled in the set.

impl BitOrAssign<StatusCode> for StatusCode

Adds the set of flags.

impl BitXorAssign<StatusCode> for StatusCode

Toggles the set of flags.

impl FromIterator<StatusCode> for StatusCode

Auto Trait Implementations

impl Send for StatusCode

impl Sync for StatusCode

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T> From for T
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]