Struct strobe_rs::OpFlags [−]
pub struct OpFlags { /* fields omitted */ }Operation flags defined in the Strobe paper. This is defined as a bitflags struct.
Methods
impl OpFlags
impl OpFlagspub const I: OpFlags
I: OpFlags = OpFlags{bits: 1 << 0,}
Is data being moved inbound
pub const A: OpFlags
A: OpFlags = OpFlags{bits: 1 << 1,}
Is data being sent to the application
pub const C: OpFlags
C: OpFlags = OpFlags{bits: 1 << 2,}
Does this operation use cipher output
pub const T: OpFlags
T: OpFlags = OpFlags{bits: 1 << 3,}
Is data being sent for transport
pub const M: OpFlags
M: OpFlags = OpFlags{bits: 1 << 4,}
Use exclusively for metadata operations
pub const K: OpFlags
K: OpFlags = OpFlags{bits: 1 << 5,}
Reserved and currently unimplemented. Using this will cause a panic.
pub fn empty() -> OpFlags
pub fn empty() -> OpFlagsReturns an empty set of flags.
pub fn all() -> OpFlags
pub fn all() -> OpFlagsReturns the set containing all flags.
pub fn bits(&self) -> u8
pub fn bits(&self) -> u8Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u8) -> Option<OpFlags>
pub fn from_bits(bits: u8) -> Option<OpFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u8) -> OpFlags
pub fn from_bits_truncate(bits: u8) -> OpFlagsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: OpFlags) -> bool
pub fn intersects(&self, other: OpFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: OpFlags) -> bool
pub fn contains(&self, other: OpFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: OpFlags)
pub fn insert(&mut self, other: OpFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: OpFlags)
pub fn remove(&mut self, other: OpFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: OpFlags)
pub fn toggle(&mut self, other: OpFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: OpFlags, value: bool)
pub fn set(&mut self, other: OpFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for OpFlags
impl Copy for OpFlagsimpl PartialEq for OpFlags
impl PartialEq for OpFlagsfn eq(&self, other: &OpFlags) -> bool
fn eq(&self, other: &OpFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &OpFlags) -> bool
fn ne(&self, other: &OpFlags) -> boolThis method tests for !=.
impl Eq for OpFlags
impl Eq for OpFlagsimpl Clone for OpFlags
impl Clone for OpFlagsfn clone(&self) -> OpFlags
fn clone(&self) -> OpFlagsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd for OpFlags
impl PartialOrd for OpFlagsfn partial_cmp(&self, other: &OpFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &OpFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &OpFlags) -> bool
fn lt(&self, other: &OpFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &OpFlags) -> bool
fn le(&self, other: &OpFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &OpFlags) -> bool
fn gt(&self, other: &OpFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &OpFlags) -> bool
fn ge(&self, other: &OpFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for OpFlags
impl Ord for OpFlagsfn cmp(&self, other: &OpFlags) -> Ordering
fn cmp(&self, other: &OpFlags) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for OpFlags
impl Hash for OpFlagsfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for OpFlags
impl Debug for OpFlagsimpl Binary for OpFlags
impl Binary for OpFlagsimpl Octal for OpFlags
impl Octal for OpFlagsimpl LowerHex for OpFlags
impl LowerHex for OpFlagsimpl UpperHex for OpFlags
impl UpperHex for OpFlagsimpl BitOr for OpFlags
impl BitOr for OpFlagstype Output = OpFlags
The resulting type after applying the | operator.
fn bitor(self, other: OpFlags) -> OpFlags
fn bitor(self, other: OpFlags) -> OpFlagsReturns the union of the two sets of flags.
impl BitOrAssign for OpFlags
impl BitOrAssign for OpFlagsfn bitor_assign(&mut self, other: OpFlags)
fn bitor_assign(&mut self, other: OpFlags)Adds the set of flags.
impl BitXor for OpFlags
impl BitXor for OpFlagstype Output = OpFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: OpFlags) -> OpFlags
fn bitxor(self, other: OpFlags) -> OpFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for OpFlags
impl BitXorAssign for OpFlagsfn bitxor_assign(&mut self, other: OpFlags)
fn bitxor_assign(&mut self, other: OpFlags)Toggles the set of flags.
impl BitAnd for OpFlags
impl BitAnd for OpFlagstype Output = OpFlags
The resulting type after applying the & operator.
fn bitand(self, other: OpFlags) -> OpFlags
fn bitand(self, other: OpFlags) -> OpFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for OpFlags
impl BitAndAssign for OpFlagsfn bitand_assign(&mut self, other: OpFlags)
fn bitand_assign(&mut self, other: OpFlags)Disables all flags disabled in the set.
impl Sub for OpFlags
impl Sub for OpFlagstype Output = OpFlags
The resulting type after applying the - operator.
fn sub(self, other: OpFlags) -> OpFlags
fn sub(self, other: OpFlags) -> OpFlagsReturns the set difference of the two sets of flags.
impl SubAssign for OpFlags
impl SubAssign for OpFlagsfn sub_assign(&mut self, other: OpFlags)
fn sub_assign(&mut self, other: OpFlags)Disables all flags enabled in the set.
impl Not for OpFlags
impl Not for OpFlagstype Output = OpFlags
The resulting type after applying the ! operator.
fn not(self) -> OpFlags
fn not(self) -> OpFlagsReturns the complement of this set of flags.
impl Extend<OpFlags> for OpFlags
impl Extend<OpFlags> for OpFlagsfn extend<T: IntoIterator<Item = OpFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = OpFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<OpFlags> for OpFlags
impl FromIterator<OpFlags> for OpFlagsfn from_iter<T: IntoIterator<Item = OpFlags>>(iterator: T) -> OpFlags
fn from_iter<T: IntoIterator<Item = OpFlags>>(iterator: T) -> OpFlagsCreates a value from an iterator. Read more