pub struct JmapMailboxChanges { /* private fields */ }Expand description
I/O-free coroutine for the JMAP Mailbox/changes method.
Implementations§
Source§impl JmapMailboxChanges
impl JmapMailboxChanges
Sourcepub fn new(
session: &JmapSession,
http_auth: &SecretString,
since_state: impl Into<String>,
opts: JmapMailboxChangesOptions,
) -> Result<Self, JmapMailboxChangesError>
pub fn new( session: &JmapSession, http_auth: &SecretString, since_state: impl Into<String>, opts: JmapMailboxChangesOptions, ) -> Result<Self, JmapMailboxChangesError>
Prepares the method call request and builds the coroutine.
Trait Implementations§
Source§impl JmapCoroutine for JmapMailboxChanges
impl JmapCoroutine for JmapMailboxChanges
Source§type Return = Result<JmapChangesOutput, JmapMailboxChangesError>
type Return = Result<JmapChangesOutput, JmapMailboxChangesError>
Terminal value. By convention
Result<Output, Error>.Auto Trait Implementations§
impl Freeze for JmapMailboxChanges
impl RefUnwindSafe for JmapMailboxChanges
impl Send for JmapMailboxChanges
impl Sync for JmapMailboxChanges
impl Unpin for JmapMailboxChanges
impl UnsafeUnpin for JmapMailboxChanges
impl UnwindSafe for JmapMailboxChanges
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more