Struct infisical_api::api::models::ErrorResponse
source · pub struct ErrorResponse {
pub type_name: String,
pub message: String,
pub context: HashMap<String, Value>,
pub level: i16,
pub level_name: String,
pub status_code: i16,
pub datetime_iso: String,
pub application: String,
pub extra: Vec<String>,
}Fields§
§type_name: String§message: String§context: HashMap<String, Value>§level: i16§level_name: String§status_code: i16§datetime_iso: String§application: String§extra: Vec<String>Trait Implementations§
source§impl Debug for ErrorResponse
impl Debug for ErrorResponse
source§impl<'de> Deserialize<'de> for ErrorResponse
impl<'de> Deserialize<'de> for ErrorResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for ErrorResponse
impl Display for ErrorResponse
source§impl Error for ErrorResponse
impl Error for ErrorResponse
source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<ErrorResponse> for Error
impl From<ErrorResponse> for Error
source§fn from(err: ErrorResponse) -> Error
fn from(err: ErrorResponse) -> Error
Converts to this type from the input type.