Struct collectd_plugin::PluginCapabilities [−]
pub struct PluginCapabilities { /* fields omitted */ }Bitflags of capabilities that a plugin advertises to collectd.
Methods
impl PluginCapabilities
impl PluginCapabilitiespub const READ: PluginCapabilities
READ: PluginCapabilities = PluginCapabilities{bits: 1,}
pub const LOG: PluginCapabilities
LOG: PluginCapabilities = PluginCapabilities{bits: 2,}
pub const WRITE: PluginCapabilities
WRITE: PluginCapabilities = PluginCapabilities{bits: 4,}
pub const FLUSH: PluginCapabilities
FLUSH: PluginCapabilities = PluginCapabilities{bits: 8,}
pub fn empty() -> PluginCapabilities
pub fn empty() -> PluginCapabilitiesReturns an empty set of flags.
pub fn all() -> PluginCapabilities
pub fn all() -> PluginCapabilitiesReturns the set containing all flags.
pub fn bits(&self) -> u32
pub fn bits(&self) -> u32Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<PluginCapabilities>
pub fn from_bits(bits: u32) -> Option<PluginCapabilities>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> PluginCapabilities
pub fn from_bits_truncate(bits: u32) -> PluginCapabilitiesConvert 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: PluginCapabilities) -> bool
pub fn intersects(&self, other: PluginCapabilities) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: PluginCapabilities) -> bool
pub fn contains(&self, other: PluginCapabilities) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: PluginCapabilities)
pub fn insert(&mut self, other: PluginCapabilities)Inserts the specified flags in-place.
pub fn remove(&mut self, other: PluginCapabilities)
pub fn remove(&mut self, other: PluginCapabilities)Removes the specified flags in-place.
pub fn toggle(&mut self, other: PluginCapabilities)
pub fn toggle(&mut self, other: PluginCapabilities)Toggles the specified flags in-place.
pub fn set(&mut self, other: PluginCapabilities, value: bool)
pub fn set(&mut self, other: PluginCapabilities, value: bool)Inserts or removes the specified flags depending on the passed value.
impl PluginCapabilities[src]
impl PluginCapabilitiespub fn has_read(self) -> bool[src]
pub fn has_read(self) -> boolpub fn has_log(self) -> bool[src]
pub fn has_log(self) -> boolpub fn has_write(self) -> bool[src]
pub fn has_write(self) -> boolpub fn has_flush(self) -> bool[src]
pub fn has_flush(self) -> boolTrait Implementations
impl Copy for PluginCapabilities
impl Copy for PluginCapabilitiesimpl PartialEq for PluginCapabilities
impl PartialEq for PluginCapabilitiesfn eq(&self, other: &PluginCapabilities) -> bool
fn eq(&self, other: &PluginCapabilities) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &PluginCapabilities) -> bool
fn ne(&self, other: &PluginCapabilities) -> boolThis method tests for !=.
impl Eq for PluginCapabilities
impl Eq for PluginCapabilitiesimpl Clone for PluginCapabilities
impl Clone for PluginCapabilitiesfn clone(&self) -> PluginCapabilities
fn clone(&self) -> PluginCapabilitiesReturns 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 PluginCapabilities
impl PartialOrd for PluginCapabilitiesfn partial_cmp(&self, other: &PluginCapabilities) -> Option<Ordering>
fn partial_cmp(&self, other: &PluginCapabilities) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &PluginCapabilities) -> bool
fn lt(&self, other: &PluginCapabilities) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &PluginCapabilities) -> bool
fn le(&self, other: &PluginCapabilities) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &PluginCapabilities) -> bool
fn gt(&self, other: &PluginCapabilities) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &PluginCapabilities) -> bool
fn ge(&self, other: &PluginCapabilities) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for PluginCapabilities
impl Ord for PluginCapabilitiesfn cmp(&self, other: &PluginCapabilities) -> Ordering
fn cmp(&self, other: &PluginCapabilities) -> 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 PluginCapabilities
impl Hash for PluginCapabilitiesfn 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 Default for PluginCapabilities[src]
impl Default for PluginCapabilitiesfn default() -> PluginCapabilities[src]
fn default() -> PluginCapabilitiesReturns the "default value" for a type. Read more
impl Debug for PluginCapabilities
impl Debug for PluginCapabilitiesimpl Binary for PluginCapabilities
impl Binary for PluginCapabilitiesimpl Octal for PluginCapabilities
impl Octal for PluginCapabilitiesimpl LowerHex for PluginCapabilities
impl LowerHex for PluginCapabilitiesimpl UpperHex for PluginCapabilities
impl UpperHex for PluginCapabilitiesimpl BitOr for PluginCapabilities
impl BitOr for PluginCapabilitiestype Output = PluginCapabilities
The resulting type after applying the | operator.
fn bitor(self, other: PluginCapabilities) -> PluginCapabilities
fn bitor(self, other: PluginCapabilities) -> PluginCapabilitiesReturns the union of the two sets of flags.
impl BitOrAssign for PluginCapabilities
impl BitOrAssign for PluginCapabilitiesfn bitor_assign(&mut self, other: PluginCapabilities)
fn bitor_assign(&mut self, other: PluginCapabilities)Adds the set of flags.
impl BitXor for PluginCapabilities
impl BitXor for PluginCapabilitiestype Output = PluginCapabilities
The resulting type after applying the ^ operator.
fn bitxor(self, other: PluginCapabilities) -> PluginCapabilities
fn bitxor(self, other: PluginCapabilities) -> PluginCapabilitiesReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for PluginCapabilities
impl BitXorAssign for PluginCapabilitiesfn bitxor_assign(&mut self, other: PluginCapabilities)
fn bitxor_assign(&mut self, other: PluginCapabilities)Toggles the set of flags.
impl BitAnd for PluginCapabilities
impl BitAnd for PluginCapabilitiestype Output = PluginCapabilities
The resulting type after applying the & operator.
fn bitand(self, other: PluginCapabilities) -> PluginCapabilities
fn bitand(self, other: PluginCapabilities) -> PluginCapabilitiesReturns the intersection between the two sets of flags.
impl BitAndAssign for PluginCapabilities
impl BitAndAssign for PluginCapabilitiesfn bitand_assign(&mut self, other: PluginCapabilities)
fn bitand_assign(&mut self, other: PluginCapabilities)Disables all flags disabled in the set.
impl Sub for PluginCapabilities
impl Sub for PluginCapabilitiestype Output = PluginCapabilities
The resulting type after applying the - operator.
fn sub(self, other: PluginCapabilities) -> PluginCapabilities
fn sub(self, other: PluginCapabilities) -> PluginCapabilitiesReturns the set difference of the two sets of flags.
impl SubAssign for PluginCapabilities
impl SubAssign for PluginCapabilitiesfn sub_assign(&mut self, other: PluginCapabilities)
fn sub_assign(&mut self, other: PluginCapabilities)Disables all flags enabled in the set.
impl Not for PluginCapabilities
impl Not for PluginCapabilitiestype Output = PluginCapabilities
The resulting type after applying the ! operator.
fn not(self) -> PluginCapabilities
fn not(self) -> PluginCapabilitiesReturns the complement of this set of flags.
impl Extend<PluginCapabilities> for PluginCapabilities
impl Extend<PluginCapabilities> for PluginCapabilitiesfn extend<T: IntoIterator<Item = PluginCapabilities>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = PluginCapabilities>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<PluginCapabilities> for PluginCapabilities
impl FromIterator<PluginCapabilities> for PluginCapabilitiesfn from_iter<T: IntoIterator<Item = PluginCapabilities>>(
iterator: T
) -> PluginCapabilities
fn from_iter<T: IntoIterator<Item = PluginCapabilities>>(
iterator: T
) -> PluginCapabilitiesCreates a value from an iterator. Read more
Auto Trait Implementations
impl Send for PluginCapabilities
impl Send for PluginCapabilitiesimpl Sync for PluginCapabilities
impl Sync for PluginCapabilities