1 2 3 4 5 6 7 8 9 10 11 12
#![allow(missing_docs)] use super::Interconnect; use crate::{model::Event as GatewayEvent, ws::WsStream}; pub enum WsMessage { Ws(Box<WsStream>), ReplaceInterconnect(Interconnect), SetKeepalive(f64), Speaking(bool), Deliver(GatewayEvent), }