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
}
Expand description

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

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

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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.

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.