[][src]Struct zenoh::PathExpr

pub struct PathExpr { /* fields omitted */ }

A zenoh Path Expression used to express a selection of Paths.

Similarly to a Path, a Path is a set of strings separated by '/' , as in a filesystem path. But unlike a Path it can contain '*' characters:

  • a single '*' character matches any set of characters in a path, except '/'.
  • while "**" matches any set of characters in a path, including '/'.

A Path Expression can be absolute (i.e. starting with a '/') or relative to a Workspace.

Implementations

impl PathExpr[src]

pub fn new(p: String) -> ZResult<PathExpr>[src]

Creates a new PathExpr from a String, checking its validity.
Returns Err(ZError) if not valid.

pub fn as_str(&self) -> &str[src]

Returns the Path as a &str.

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

Returns true is this PathExpr is relative (i.e. not starting with '/').

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

Returns true is this PathExpr is a Path (i.e. not containing any '*').

pub fn with_prefix(&self, prefix: &Path) -> Self[src]

Returns the concatenation of prefix with this PathExpr.

pub fn strip_prefix(&self, prefix: &Path) -> Option<Self>[src]

If this PathExpr starts with prefix returns a copy of this PathExpr with the prefix removed.
Otherwise, returns None.

pub fn matches(&self, path: &Path) -> bool[src]

Returns true if path matches this PathExpr.

Trait Implementations

impl Clone for PathExpr[src]

impl Debug for PathExpr[src]

impl Display for PathExpr[src]

impl Eq for PathExpr[src]

impl<'_> From<&'_ Path> for PathExpr[src]

impl<'_> From<&'_ PathExpr> for ResKey[src]

impl From<Path> for PathExpr[src]

impl From<PathExpr> for ResKey[src]

impl Hash for PathExpr[src]

impl PartialEq<PathExpr> for PathExpr[src]

impl StructuralEq for PathExpr[src]

impl StructuralPartialEq for PathExpr[src]

impl<'_> TryFrom<&'_ str> for PathExpr[src]

type Error = ZError

The type returned in the event of a conversion error.

impl TryFrom<String> for PathExpr[src]

type Error = ZError

The type returned in the event of a conversion error.

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,