Enum glop::runtime::ScriptResponse [] [src]

pub enum ScriptResponse {
    GetVar {
        key: String,
        value: String,
    },
    SetVar {
        key: String,
        value: String,
    },
    UnsetVar {
        key: String,
    },
    GetMsg {
        topic: String,
        key: String,
        value: String,
    },
    SendMsg {
        dst: String,
        topic: String,
    },
    Error(String),
}

Variants

Fields of GetVar

Fields of SetVar

Fields of UnsetVar

Fields of GetMsg

Fields of SendMsg

Trait Implementations

impl Debug for Response
[src]

Formats the value using the given formatter.