Enum exar_server::State [] [src]

pub enum State {
    Idle(Arc<Mutex<Database>>),
    Connected(Connection),
}

A list specifying categories of connection state.

Variants

The connection is idle and awaiting a Connect message.

The connection has been established.

Trait Implementations

impl Clone for State
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl ToString for State
[src]

Converts the given value to a String. Read more