pub struct GetPackOauthConfigResponse {
pub coda_detail: Option<GetPackOauthConfigResponseCodaDetail>,
pub message: String,
pub status_code: f64,
pub status_message: String,
}
Expand description
An HTTP error resulting from an unsuccessful request.
JSON schema
{
"description": "An HTTP error resulting from an unsuccessful request.",
"required": [
"message",
"statusCode",
"statusMessage"
],
"properties": {
"codaDetail": {
"description": "Detail about why this request was rejected.",
"type": "object",
"properties": {
"validationErrors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ValidationError"
}
}
},
"additionalProperties": false
},
"message": {
"description": "Any additional context on the error, or the same as
`statusMessage` otherwise.",
"examples": [
"Bad Request"
],
"type": "string"
},
"statusCode": {
"description": "HTTP status code of the error.",
"examples": [
400
],
"type": "number"
},
"statusMessage": {
"description": "HTTP status message of the error.",
"examples": [
"Bad Request"
],
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§coda_detail: Option<GetPackOauthConfigResponseCodaDetail>
§message: String
Any additional context on the error, or the same as statusMessage
otherwise.
status_code: f64
§status_message: String
HTTP status message of the error.
Trait Implementations§
Source§impl Clone for GetPackOauthConfigResponse
impl Clone for GetPackOauthConfigResponse
Source§fn clone(&self) -> GetPackOauthConfigResponse
fn clone(&self) -> GetPackOauthConfigResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetPackOauthConfigResponse
impl Debug for GetPackOauthConfigResponse
Source§impl<'de> Deserialize<'de> for GetPackOauthConfigResponse
impl<'de> Deserialize<'de> for GetPackOauthConfigResponse
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 From<&GetPackOauthConfigResponse> for GetPackOauthConfigResponse
impl From<&GetPackOauthConfigResponse> for GetPackOauthConfigResponse
Source§fn from(value: &GetPackOauthConfigResponse) -> Self
fn from(value: &GetPackOauthConfigResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetPackOauthConfigResponse
impl RefUnwindSafe for GetPackOauthConfigResponse
impl Send for GetPackOauthConfigResponse
impl Sync for GetPackOauthConfigResponse
impl Unpin for GetPackOauthConfigResponse
impl UnwindSafe for GetPackOauthConfigResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more