Enum atc::libs::command::ChannelCommand
source · pub enum ChannelCommand {
Identify(String),
Terminate(String),
ChannelMessage((String, String)),
Ping,
Pong,
}
Variants§
Identify(String)
Identify the connection endpoint, normally use job-id
.
Terminate(String)
Terminate connection.
ChannelMessage((String, String))
Channel message. normally sent by server.
Ping
Ping msg
Pong
Pong msg
Trait Implementations§
source§impl Clone for ChannelCommand
impl Clone for ChannelCommand
source§fn clone(&self) -> ChannelCommand
fn clone(&self) -> ChannelCommand
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more