Enum glop::runtime::ScriptRequest [] [src]

pub enum ScriptRequest {
    GetVar {
        key: String,
    },
    SetVar {
        key: String,
        value: String,
    },
    UnsetVar {
        key: String,
    },
    GetMsg {
        topic: String,
        key: String,
    },
    SendMsg {
        dst: String,
        topic: String,
        contents: Obj,
    },
    ReplyMsg {
        src_topic: String,
        topic: String,
        contents: Obj,
    },
}

Variants

Fields of GetVar

Fields of SetVar

Fields of UnsetVar

Fields of GetMsg

Fields of SendMsg

Fields of ReplyMsg

Trait Implementations

impl Debug for Request
[src]

Formats the value using the given formatter.