circle-compliance 0.1.0

Rust client for the Circle Web3 Services Compliance Engine API
Documentation
1
2
3
4
5
6
7
8
9
10
//! Common types shared across the Compliance Engine API.

/// Error response body returned by the Circle API on non-2xx status codes.
#[derive(Debug, Clone, serde::Deserialize)]
pub struct ApiErrorBody {
    /// Numeric error code.
    pub code: i32,
    /// Human-readable error message.
    pub message: String,
}