[]Struct ichen_openprotocol::Filters

pub struct Filters { /* fields omitted */ }

General authorizations to access the iChen System via Open Protocol.

See this document for details.

Methods

impl Filters

pub const None: Filters

No rights.

pub const Status: Filters

Controller status update messages.

pub const Cycle: Filters

Cycle data messages.

pub const Mold: Filters

Mold data messages.

pub const Actions: Filters

Controller action messages.

pub const Alarms: Filters

Controller alarm messages.

pub const Audit: Filters

Controller audit trail of setting changes

pub const All: Filters

Administrator rights.

All implies Status + Cycle + Mold + Actions + Alarms + Audit

pub const JobCards: Filters

MIS/MES integration: Job scheduling messages.

pub const Operators: Filters

MIS/MES integration: User authorization messages.

pub const OPCUA: Filters

Industrial bus integration: Connect via OPC UA.

pub const fn empty() -> Filters

Returns an empty set of flags

pub const fn all() -> Filters

Returns the set containing all flags.

pub const fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<Filters>

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

pub const fn from_bits_truncate(bits: u32) -> Filters

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

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool

Returns true if all flags are currently set.

pub const fn intersects(&self, other: Filters) -> bool

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

pub const fn contains(&self, other: Filters) -> bool

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

pub fn insert(&mut self, other: Filters)

Inserts the specified flags in-place.

pub fn remove(&mut self, other: Filters)

Removes the specified flags in-place.

pub fn toggle(&mut self, other: Filters)

Toggles the specified flags in-place.

pub fn set(&mut self, other: Filters, value: bool)

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

impl Filters[src]

pub fn has(self, other: Self) -> bool[src]

Is a particular set of filters set?

Examples

let f = Filters::Status + Filters::Audit + Filters::JobCards;
assert!(f.has(Filters::Status));
assert!(f.has(Filters::JobCards));
assert!(!f.has(Filters::All));
assert!(!f.has(Filters::OPCUA));
assert!(!f.has(Filters::Mold));

Trait Implementations

impl Add<Filters> for Filters[src]

type Output = Self

The resulting type after applying the + operator.

fn add(self, rhs: Self) -> Self::Output[src]

Turn on a particular filter.

Example

let mut f = Filters::Cycle + Filters::OPCUA;
f = f + Filters::All;
assert_eq!(Filters::All + Filters::OPCUA, f);

impl AddAssign<Filters> for Filters[src]

fn add_assign(&mut self, other: Self)[src]

Turn on a particular filter.

Example

let mut f = Filters::Cycle + Filters::OPCUA;
f += Filters::All;
assert_eq!(Filters::All + Filters::OPCUA, f);

impl Binary for Filters

impl BitAnd<Filters> for Filters

type Output = Filters

The resulting type after applying the & operator.

fn bitand(self, other: Filters) -> Filters

Returns the intersection between the two sets of flags.

impl BitAndAssign<Filters> for Filters

fn bitand_assign(&mut self, other: Filters)

Disables all flags disabled in the set.

impl BitOr<Filters> for Filters

type Output = Filters

The resulting type after applying the | operator.

fn bitor(self, other: Filters) -> Filters

Returns the union of the two sets of flags.

impl BitOrAssign<Filters> for Filters

fn bitor_assign(&mut self, other: Filters)

Adds the set of flags.

impl BitXor<Filters> for Filters

type Output = Filters

The resulting type after applying the ^ operator.

fn bitxor(self, other: Filters) -> Filters

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

impl BitXorAssign<Filters> for Filters

fn bitxor_assign(&mut self, other: Filters)

Toggles the set of flags.

impl Clone for Filters

impl Copy for Filters

impl Debug for Filters

impl<'de> Deserialize<'de> for Filters[src]

impl Display for Filters[src]

Serialize Filters as comma-separated list.

Examples

let f = Filters::All + Filters::Cycle + Filters::OPCUA;
assert_eq!("All, OPCUA", f.to_string());

fn fmt(&self, f: &mut Formatter) -> Result[src]

Display filters value as comma-delimited list.

impl Eq for Filters

impl Extend<Filters> for Filters

impl From<Filters> for String[src]

fn from(f: Filters) -> Self[src]

Convert filters value into a comma-delimited list.

impl<T: AsRef<str>> From<T> for Filters[src]

fn from(s: T) -> Self[src]

Call Filters::from_str to parse a filters value from a comma-delimited string.

impl FromIterator<Filters> for Filters

impl FromStr for Filters[src]

type Err = String

The associated error which can be returned from parsing.

fn from_str(text: &str) -> Result<Self, Self::Err>[src]

Parse a comma-delimited String into a Filters values.

Filters::from_str never fails. Unmatched tokens will simply be discarded. If nothing matches, Filters::None will be returned.

Examples

let f = Filters::from_str("Hello, World, Cycle, Mold,Operators|Foo+BarXYZYXYZ=123").unwrap();
assert_eq!(Filters::Cycle + Filters::Mold, f);

let f = Filters::from_str("All, OPCUA").unwrap();
assert_eq!(Filters::All + Filters::OPCUA, f);
assert!(f.has(Filters::All));
assert!(f.has(Filters::OPCUA));
assert!(!f.has(Filters::Operators));
assert!(!f.has(Filters::JobCards));
assert!(f.has(Filters::Cycle));
assert!(f.has(Filters::Status));
assert!(f.has(Filters::Mold));
assert!(f.has(Filters::Audit));
assert!(f.has(Filters::Alarms));

impl Hash for Filters

impl LowerHex for Filters

impl Not for Filters

type Output = Filters

The resulting type after applying the ! operator.

fn not(self) -> Filters

Returns the complement of this set of flags.

impl Octal for Filters

impl Ord for Filters

impl PartialEq<Filters> for Filters

impl PartialOrd<Filters> for Filters

impl Serialize for Filters[src]

impl StructuralEq for Filters

impl StructuralPartialEq for Filters

impl Sub<Filters> for Filters

type Output = Filters

The resulting type after applying the - operator.

fn sub(self, other: Filters) -> Filters

Returns the set difference of the two sets of flags.

impl SubAssign<Filters> for Filters

fn sub_assign(&mut self, other: Filters)

Disables all flags enabled in the set.

impl UpperHex for Filters

Auto Trait Implementations

impl RefUnwindSafe for Filters

impl Send for Filters

impl Sync for Filters

impl Unpin for Filters

impl UnwindSafe for Filters

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any