[][src]Enum zenoh::net::ResKey

pub enum ResKey {
    RName(String),
    RId(u64),
    RIdWithSuffix(u64String),
}

A resource key.

Variants

RName(String)
RId(u64)
RIdWithSuffix(u64String)

Implementations

impl ResKey[src]

A resource key.

pub fn rid(&self) -> u64[src]

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

Trait Implementations

impl Clone for ResKey[src]

impl Debug for ResKey[src]

impl Display for ResKey[src]

impl Eq for ResKey[src]

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

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

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

impl<'_> From<(u64, &'_ str)> for ResKey[src]

impl From<(u64, String)> for ResKey[src]

impl From<Path> for ResKey[src]

impl From<PathExpr> for ResKey[src]

impl From<String> for ResKey[src]

impl From<u64> for ResKey[src]

impl Hash for ResKey[src]

impl PartialEq<ResKey> for ResKey[src]

impl StructuralEq for ResKey[src]

impl StructuralPartialEq for ResKey[src]

Auto Trait Implementations

impl RefUnwindSafe for ResKey

impl Send for ResKey

impl Sync for ResKey

impl Unpin for ResKey

impl UnwindSafe for ResKey

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