Skip to main content

Crate jmap_tasks_client

Crate jmap_tasks_client 

Source
Expand description

JMAP Tasks extension client methods.

§Usage

let session = client.fetch_session().await?;
let sc = client.with_tasks_session(session);
let task_lists = sc.task_list_get(None, None).await?;

Re-exports§

pub use methods::SessionClient;
pub use methods::TaskListSetParams;

Modules§

methods
Typed JMAP Tasks method wrappers — response types, SessionClient, constants, and helpers.

Structs§

AddedItem
A single item added to a query result set (RFC 8620 §5.6).
ChangesResponse
RFC 8620 §5.2 — Foo/changes response shape.
GetResponse
RFC 8620 §5.1 — Foo/get response shape.
QueryChangesResponse
RFC 8620 §5.6 — Foo/queryChanges response shape.
QueryResponse
RFC 8620 §5.5 — Foo/query response shape.
SetError
A per-item failure in a /set response (RFC 8620 §5.3).
SetResponse
RFC 8620 §5.3 — Foo/set response shape.

Enums§

ClientError
Errors produced by the base JMAP client.

Traits§

JmapTasksExt
Extension trait adding JMAP Tasks methods to jmap_base_client::JmapClient.