Struct varlink::Reply [] [src]

pub struct Reply {
    pub continues: Option<bool>,
    pub upgraded: Option<bool>,
    pub error: Option<Cow<'static, str>>,
    pub parameters: Option<Value>,
}

The structure of a varlink reply. Used to deserialize it into json.

There should be no need to use this directly. See the CallTrait to use with the first Call parameter

Fields

Methods

impl Reply
[src]

[src]

[src]

Trait Implementations

impl<T> From<T> for Reply where
    T: VarlinkReply + Serialize
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Reply

impl Sync for Reply