[]Struct ichen_openprotocol::Filters

pub struct Filters { /* fields omitted */ }

General authorizations to access the iChen System via Open Protocol.

For details, see this document.

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 messages.

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 to the OPC UA server.

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?

Trait Implementations

impl Clone for Filters

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Ord for Filters

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

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

Restrict a value to a certain interval. Read more

impl Extend<Filters> for Filters

impl PartialOrd<Filters> for Filters

impl PartialEq<Filters> for Filters

impl Copy for Filters

impl Eq for Filters

impl Display for Filters[src]

impl Debug for Filters

impl Add<Filters> for Filters[src]

type Output = Self

The resulting type after applying the + operator.

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 AddAssign<Filters> for Filters[src]

impl SubAssign<Filters> for Filters

fn sub_assign(&mut self, other: Filters)

Disables all flags enabled in the set.

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 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 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 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 BitAndAssign<Filters> for Filters

fn bitand_assign(&mut self, other: Filters)

Disables all flags disabled in the set.

impl BitOrAssign<Filters> for Filters

fn bitor_assign(&mut self, other: Filters)

Adds the set of flags.

impl BitXorAssign<Filters> for Filters

fn bitxor_assign(&mut self, other: Filters)

Toggles the set of flags.

impl Hash for Filters

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

impl FromIterator<Filters> for Filters

impl FromStr for Filters[src]

type Err = ()

The associated error which can be returned from parsing.

impl Octal for Filters

impl Binary for Filters

impl LowerHex for Filters

impl UpperHex for Filters

Auto Trait Implementations

impl Sync for Filters

impl Send for Filters

impl Unpin for Filters

impl RefUnwindSafe for Filters

impl UnwindSafe for Filters

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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