sdp-request-client 0.1.10

A Rust client for making requests to the SDP API.
Documentation
1
2
3
4
5
6
7
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Credentials {
    /// Unimplemented
    Basic { username: String, password: String },
    /// Bearer token authentication
    Token { token: String },
}