1 2 3 4 5 6 7 8 9 10 11
use crate::client::Connection; pub(crate) enum Command { Release(Connection), ConnectionCanceled, /// Connection is established but we got drop (e.g. at timeout) /// when trying to acquire lock to get statistics updated ConnectionEstablished, Close, }