arcgis 0.1.3

Type-safe Rust SDK for the ArcGIS REST API with compile-time guarantees
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Authentication providers for ArcGIS services.

mod api_key;
mod client_credentials;
mod no_auth;
mod provider;

pub use api_key::{ApiKeyAuth, ApiKeyTier};
pub use client_credentials::ClientCredentialsAuth;
pub use no_auth::NoAuth;
pub use provider::AuthProvider;