Struct quandl_v3::ApiErrorResponse
[−]
[src]
pub struct ApiErrorResponse { pub errors: Option<BTreeMap<String, Vec<String>>>, pub quandl_error: QuandlError, }
Struct for storing a Quandl API error response as-is.
Fields
errors: Option<BTreeMap<String, Vec<String>>>
This field contains more specific information about what went wrong. For example, it could
inform you that a start_date
is outside a valid range.
quandl_error: QuandlError
Hold more generic failure information.
Trait Implementations
impl Debug for ApiErrorResponse
[src]
impl Clone for ApiErrorResponse
[src]
fn clone(&self) -> ApiErrorResponse
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for ApiErrorResponse
[src]
fn eq(&self, __arg_0: &ApiErrorResponse) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ApiErrorResponse) -> bool
This method tests for !=
.