cirrus-metadata 0.1.0

Salesforce Metadata API (SOAP) client for the Cirrus SDK.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Typed handlers for Metadata API operations.
//!
//! Each submodule corresponds to one operation family. Handlers
//! construct [`SoapOperation`](crate::SoapOperation) implementations
//! and dispatch them through [`MetadataClient::call`](crate::MetadataClient::call).
//!
//! Public methods on [`MetadataClient`](crate::MetadataClient) are
//! defined in these submodules via `impl` blocks, so callers see
//! everything at the top level (`md.deploy(...)`, `md.retrieve(...)`,
//! etc.) without having to import handler types.

pub mod crud;
pub mod file_based;
pub mod utility;