[][src]Struct queen::queen::Sessions

pub struct Sessions {
    pub conns: Slab<Session>,
    pub chans: HashMap<String, HashSet<usize>>,
    pub client_ids: HashMap<MessageId, usize>,
}

Fields

conns: Slab<Session>chans: HashMap<String, HashSet<usize>>client_ids: HashMap<MessageId, usize>

Methods

impl Sessions[src]

pub fn new() -> Sessions[src]

Trait Implementations

impl Default for Sessions[src]

Auto Trait Implementations

impl !RefUnwindSafe for Sessions

impl Send for Sessions

impl !Sync for Sessions

impl Unpin for Sessions

impl !UnwindSafe for Sessions

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,