Struct onedrive_api::error::Error [−][src]
pub struct Error {
pub kind: ErrorKind,
pub source: Option<Box<StdError>>,
pub response: Option<String>,
}Fields
kind: ErrorKind
source: Option<Box<StdError>>
response: Option<String>
Trait Implementations
impl Debug for Error[src]
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Display for Error[src]
impl Display for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl StdError for Error[src]
impl StdError for Errorfn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0
[src]This method is soft-deprecated. Read more
fn cause(&self) -> Option<&Error>1.0.0[src]
fn cause(&self) -> Option<&Error>1.0.0
[src]The lower-level cause of this error, if any. Read more
impl From<ExternRequestError> for Error[src]
impl From<ExternRequestError> for Errorfn from(e: ExternRequestError) -> Self[src]
fn from(e: ExternRequestError) -> SelfPerforms the conversion.