Struct google_content2::api::Error
source · pub struct Error {
pub domain: Option<String>,
pub message: Option<String>,
pub reason: Option<String>,
}Expand description
An error returned by the API.
This type is not used in any activity, and only used as part of another schema.
Fields§
§domain: Option<String>The domain of the error.
message: Option<String>A description of the error.
reason: Option<String>The error code.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Error
impl<'de> Deserialize<'de> for Error
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