[][src]Struct libquassel::message::ClientInitAck

pub struct ClientInitAck {
    pub core_features: u32,
    pub core_configured: bool,
    pub storage_backends: VariantList,
    pub authenticators: VariantList,
    pub feature_list: StringList,
}

ClientInitAck is received when the initialization was successfull

Fields

core_features: u32

Flags of supported legacy features

core_configured: bool

If the core has already been configured

storage_backends: VariantList

List of VariantMaps of info on available backends

authenticators: VariantList

List of VariantMaps of info on available authenticators

feature_list: StringList

List of supported extended features

Trait Implementations

impl Debug for ClientInitAck[src]

impl HandshakeDeserialize for ClientInitAck[src]

impl HandshakeSerialize for ClientInitAck[src]

Auto Trait Implementations

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.