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

pub struct GetResponse<OBJ: Object> {
    pub account_id: Id<Account>,
    pub state: State<OBJ>,
    pub list: Vec<OBJ>,
    pub not_found: Vec<Id<OBJ>>,
}

Fields

account_id: Id<Account>state: State<OBJ>list: Vec<OBJ>not_found: Vec<Id<OBJ>>

Implementations

impl<OBJ: Object> GetResponse<OBJ>[src]

pub fn account_id_mut(&mut self) -> &mut Id<Account>[src]

pub fn state_mut(&mut self) -> &mut State<OBJ>[src]

pub fn list_mut(&mut self) -> &mut Vec<OBJ>[src]

pub fn not_found_mut(&mut self) -> &mut Vec<Id<OBJ>>[src]

Trait Implementations

impl<OBJ: Debug + Object> Debug for GetResponse<OBJ>[src]

impl<'de, OBJ: Object> Deserialize<'de> for GetResponse<OBJ> where
    OBJ: Deserialize<'de>, 
[src]

impl<OBJ: Object> Serialize for GetResponse<OBJ> where
    OBJ: Serialize
[src]

impl<OBJ: Object + DeserializeOwned, '_> TryFrom<&'_ RawValue> for GetResponse<OBJ>[src]

type Error = MeliError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<OBJ> RefUnwindSafe for GetResponse<OBJ> where
    OBJ: RefUnwindSafe

impl<OBJ> Send for GetResponse<OBJ> where
    OBJ: Send

impl<OBJ> Sync for GetResponse<OBJ> where
    OBJ: Sync

impl<OBJ> Unpin for GetResponse<OBJ> where
    OBJ: Unpin

impl<OBJ> UnwindSafe for GetResponse<OBJ> where
    OBJ: UnwindSafe

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]