Enum rustypaste_cli::error::Error [−][src]
pub enum Error {
IoError(Error),
TomlError(Error),
RequestError(Box<Error>),
UploadError(String),
MultipartIOError(LazyError<'static, Error>),
}Expand description
Custom error type.
Variants
IoError(Error)Error that might occur while handling I/O operations.
Tuple Fields of IoError
0: ErrorTomlError(Error)Error that might occur while parsing the configuration file.
Tuple Fields of TomlError
0: ErrorError that might occur while processing/sending requests.
UploadError(String)Error that might occur while uploading files.
Tuple Fields of UploadError
0: StringError that might occur during the preparation of the multipart data.