WireExpr

Struct WireExpr 

Source
pub struct WireExpr<'a> {
    pub scope: ExprId,
    pub suffix: Cow<'a, str>,
    pub mapping: Mapping,
}
Expand description

A zenoh resource is represented by a pair composed by a key and a value, such as, (car/telemetry/speed, 320). A resource key is an arbitrary array of characters, with the exclusion of the symbols *, **, ?, [, ], and #, which have special meaning in the context of zenoh.

A key including any number of the wildcard symbols, * and **, such as, /car/telemetry/*, is called a key expression as it denotes a set of keys. The wildcard character * expands to an arbitrary string not including zenoh’s reserved characters and the / character, while the ** expands to strings that may also include the / character.

Finally, it is worth mentioning that for time and space efficiency matters, zenoh will automatically map key expressions to small integers. The mapping is automatic, but it can be triggered excplicily by with zenoh::Session::declare_keyexpr().

Fields§

§scope: ExprId§suffix: Cow<'a, str>§mapping: Mapping

Implementations§

Source§

impl<'a> WireExpr<'a>

Source

pub fn empty() -> Self

Source

pub fn is_empty(&self) -> bool

Source

pub fn as_str(&'a self) -> &'a str

Source

pub fn try_as_str(&'a self) -> ZResult<&'a str>

Source

pub fn as_id(&'a self) -> ExprId

Source

pub fn try_as_id(&'a self) -> ZResult<ExprId>

Source

pub fn as_id_and_suffix(&'a self) -> (ExprId, &'a str)

Source

pub fn has_suffix(&self) -> bool

Source

pub fn to_owned(&self) -> WireExpr<'static>

Source

pub fn with_suffix(self, suffix: &'a str) -> Self

Trait Implementations§

Source§

impl<'a> Clone for WireExpr<'a>

Source§

fn clone(&self) -> WireExpr<'a>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for WireExpr<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for WireExpr<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> From<&'a OwnedKeyExpr> for WireExpr<'a>

Source§

fn from(val: &'a OwnedKeyExpr) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<&'a String> for WireExpr<'a>

Source§

fn from(name: &'a String) -> WireExpr<'a>

Converts to this type from the input type.
Source§

impl<'a> From<&WireExpr<'a>> for WireExpr<'a>

Source§

fn from(key: &WireExpr<'a>) -> WireExpr<'a>

Converts to this type from the input type.
Source§

impl<'a> From<&'a keyexpr> for WireExpr<'a>

Source§

fn from(val: &'a keyexpr) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<&'a str> for WireExpr<'a>

Source§

fn from(name: &'a str) -> WireExpr<'a>

Converts to this type from the input type.
Source§

impl From<String> for WireExpr<'_>

Source§

fn from(name: String) -> WireExpr<'static>

Converts to this type from the input type.
Source§

impl From<u16> for WireExpr<'_>

Source§

fn from(scope: ExprId) -> Self

Converts to this type from the input type.
Source§

impl<'a> Hash for WireExpr<'a>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a> PartialEq for WireExpr<'a>

Source§

fn eq(&self, other: &WireExpr<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl TryInto<String> for WireExpr<'_>

Source§

type Error = Box<dyn Error + Sync + Send>

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<String, Self::Error>

Performs the conversion.
Source§

impl TryInto<u16> for WireExpr<'_>

Source§

type Error = Box<dyn Error + Sync + Send>

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<ExprId, Self::Error>

Performs the conversion.
Source§

impl<'a> Eq for WireExpr<'a>

Source§

impl<'a> StructuralPartialEq for WireExpr<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for WireExpr<'a>

§

impl<'a> RefUnwindSafe for WireExpr<'a>

§

impl<'a> Send for WireExpr<'a>

§

impl<'a> Sync for WireExpr<'a>

§

impl<'a> Unpin for WireExpr<'a>

§

impl<'a> UnwindSafe for WireExpr<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsNode<T> for T

Source§

fn as_node(&self) -> &T

Source§

impl<T> AsNodeMut<T> for T

Source§

fn as_node_mut(&mut self) -> &mut T

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V