[][src]Struct melib::backends::jmap::rfc8620::JmapSession

pub struct JmapSession {
    pub capabilities: HashMap<String, CapabilitiesObject>,
    pub accounts: HashMap<Id<Account>, Account>,
    pub primary_accounts: HashMap<String, Id<Account>>,
    pub username: String,
    pub api_url: String,
    pub download_url: String,
    pub upload_url: String,
    pub event_source_url: String,
    pub state: State<JmapSession>,
    pub extra_properties: HashMap<String, Value>,
}

Fields

capabilities: HashMap<String, CapabilitiesObject>accounts: HashMap<Id<Account>, Account>primary_accounts: HashMap<String, Id<Account>>username: Stringapi_url: Stringdownload_url: Stringupload_url: Stringevent_source_url: Stringstate: State<JmapSession>extra_properties: HashMap<String, Value>

Trait Implementations

impl Debug for JmapSession[src]

impl Default for JmapSession[src]

impl<'de> Deserialize<'de> for JmapSession[src]

impl Object for JmapSession[src]

impl Serialize for JmapSession[src]

Auto Trait Implementations

impl RefUnwindSafe for JmapSession

impl Send for JmapSession

impl Sync for JmapSession

impl Unpin for JmapSession

impl UnwindSafe for JmapSession

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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>, 

impl<T> WithSubscriber for T[src]