Enum kickstarter::Error
[−]
[src]
pub enum Error {
InvalidData(Error),
Config(String),
Database(DbError),
IO(Error),
}The error type for Kickstarter operations.
Variants
InvalidData | Provided data was invalid. |
Config | An error occurred with the provided configuration. |
Database | A database operation could not be completed. |
IO | An I/O operation could not be completed. |