Struct cloud_storage::ErrorList [−][src]
pub struct ErrorList {
pub errors: Vec<GoogleError>,
pub code: u16,
pub message: String,
}Expand description
A container for the error information.
Fields
errors: Vec<GoogleError>A container for the error details.
code: u16An HTTP status code value, without the textual description.
Example values include: 400 (Bad Request), 401 (Unauthorized), and 404 (Not Found).
message: StringDescription of the error. Same as errors.message.
Trait Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for ErrorList
impl UnwindSafe for ErrorList
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more