Struct async_rustbus::MatchRule[][src]

pub struct MatchRule {
    pub sender: Option<Arc<str>>,
    pub path: Option<Arc<str>>,
    pub path_namespace: Option<Arc<str>>,
    pub interface: Option<Arc<str>>,
    pub member: Option<Arc<str>>,
    // some fields omitted
}

Represents a match for incoming signals.

Signals match a MatchRule if they match every field. When one of the fields is None it is equivelent to a wildcard for that field, causing that field to be matching for every signal.

MatchRule’s are ordered by their specificity. If one MatchRule is ‘less than’ another, then it is more specific than the other one. See the Ord impl for details.

Fields

sender: Option<Arc<str>>

Checks against the sender of the signal.

path: Option<Arc<str>>

Matches against the object path of the signal requiring an exact match (no children). path and path_namespace cannot be used simultanously.

path_namespace: Option<Arc<str>>

Matches against the object path of the signal. It accepts an exact match, or a child of path_namespace. path and path_namespace cannot be used simultanously.

interface: Option<Arc<str>>

Matches against the interface of the signal.

member: Option<Arc<str>>

Matches against the signal member.

Implementations

impl MatchRule[src]

pub fn new() -> Self[src]

pub fn sender<S: Into<String>>(&mut self, sender: S) -> &mut Self[src]

pub fn path<S: Into<String>>(&mut self, path: S) -> &mut Self[src]

pub fn path_namespace<S: Into<String>>(
    &mut self,
    path_namespace: S
) -> &mut Self
[src]

pub fn interface<S: Into<String>>(&mut self, interface: S) -> &mut Self[src]

pub fn member<S: Into<String>>(&mut self, member: S) -> &mut Self[src]

pub fn is_empty(&self) -> bool[src]

pub fn matches(&self, msg: &MarshalledMessage) -> bool[src]

Returns true if the message is a signal and matches the rule.

pub fn match_string(&self) -> String[src]

Returns the org.freedesktop.DBus.AddMatch match rule string.

Trait Implementations

impl Clone for MatchRule[src]

impl Debug for MatchRule[src]

impl Default for MatchRule[src]

impl Ord for MatchRule[src]

MatchRules are ordered by their specificity. If one match rule is ‘less than’ another then it is more specific than the other. When evaluating specificity the following steps are taken:

  1. If one rule has Some sender and the other None then, the former is less than the latter. Otherwise continue to the next step.
  2. If one rule has Some path and the other None then, the former is less than the latter. Otherwise continue to the next step.
  3. If one rule has Some path_namespace and the other None then, the former is less than the latter. Otherwise continue to the next step.
  4. If both rules have Some path_namespace and one is a subset of the other than the former is less than the latter. Otherwise continue to the next step.
  5. If one rule has Some interface and the other None then, the former is less than the latter. Otherwise continue to the next step.
  6. If one rule has Some member and the other None then, the former is less than the latter. Otherwise continue to the next step.
  7. Compare sender field. If not equal return the Ordering, otherwise continue to the next step.
  8. Compare path field. If not equal return the Ordering, otherwise continue to the next step.
  9. Compare path_namespace field. If not equal return the Ordering, otherwise continue to the next step.
  10. Compare interface field. If not equal return the Ordering, otherwise continue to the next step.
  11. Compare member field, and return the result.

impl PartialEq<MatchRule> for MatchRule[src]

impl PartialOrd<MatchRule> for MatchRule[src]

impl Eq for MatchRule[src]

Auto Trait Implementations

impl RefUnwindSafe for MatchRule

impl Send for MatchRule

impl Sync for MatchRule

impl Unpin for MatchRule

impl UnwindSafe for MatchRule

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