pub struct JmapCalendarChanges { /* private fields */ }Expand description
I/O-free coroutine for the JMAP Calendar/changes method.
Implementations§
Source§impl JmapCalendarChanges
impl JmapCalendarChanges
Sourcepub fn new(
session: &JmapSession,
http_auth: &SecretString,
since_state: impl Into<String>,
opts: JmapCalendarChangesOptions,
) -> Result<Self, JmapCalendarChangesError>
pub fn new( session: &JmapSession, http_auth: &SecretString, since_state: impl Into<String>, opts: JmapCalendarChangesOptions, ) -> Result<Self, JmapCalendarChangesError>
Prepares the method call request and builds the coroutine.
Trait Implementations§
Source§impl JmapCoroutine for JmapCalendarChanges
impl JmapCoroutine for JmapCalendarChanges
Source§type Return = Result<JmapChangesOutput, JmapCalendarChangesError>
type Return = Result<JmapChangesOutput, JmapCalendarChangesError>
Terminal value. By convention
Result<Output, Error>.Auto Trait Implementations§
impl Freeze for JmapCalendarChanges
impl RefUnwindSafe for JmapCalendarChanges
impl Send for JmapCalendarChanges
impl Sync for JmapCalendarChanges
impl Unpin for JmapCalendarChanges
impl UnsafeUnpin for JmapCalendarChanges
impl UnwindSafe for JmapCalendarChanges
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