dsh_sdk 0.8.1

SDK for KPN Data Services Hub
Documentation
1
2
3
4
5
6
7
8
9
10
/// Error type for the utils module
#[derive(Debug, thiserror::Error)]
pub enum UtilsError {
    #[error("Env variable {0} error: {1}")]
    EnvVarError(&'static str, std::env::VarError),
    #[error("No tenant name found")]
    NoTenantName,
    #[error("Invalid platform: {0}")]
    InvalidPlatform(String),
}