gcpauth 0.1.2

Google Cloud Platform server application authentication library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("json parse error")]
    JsonError(#[from] json::Error),

    #[error("error `{0}`")]
    StringError(String),

    #[error("jwt error")]
    JwtError(#[from] jwt::errors::Error),

    #[error("hyper error")]
    HyperError(#[from] hyper::Error),

    #[error("io error")]
    IOError(#[from] std::io::Error),
}