Struct zenoh::Change[][src]

pub struct Change {
    pub path: Path,
    pub value: Option<Value>,
    pub timestamp: Timestamp,
    pub kind: ChangeKind,
}

The notification of a change occured on a path/value and reported to a subscription.

See Workspace::subscribe() and Workspace::subscribe_with_callback().

Fields

path: Path

the Path related to this change.

value: Option<Value>

the new Value if the kind is PUT. None if the kind is DELETE.

timestamp: Timestamp

the Timestamp of the change

kind: ChangeKind

the kind of change (PUT or DELETE).

Implementations

impl Change[src]

pub fn from_sample(sample: Sample, decode_value: bool) -> ZResult<Change>[src]

Convert a Sample into a Change. If the Sample's kind is DELETE, the Change's value is set to None. Otherwise, if decode_value is true the payload is decoded as a typed Value. If decode_value is false, the payload is converted into a Value::Raw.

pub fn into_sample(self) -> Sample[src]

Convert this Change into a Sample to be sent via zenoh-net.

Trait Implementations

impl Clone for Change[src]

impl Debug for Change[src]

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