Enum queue_file::Error [−][src]
pub enum Error {
Io {
source: Error,
},
TooManyElements {},
ElementTooBig {},
CorruptedFile {
msg: String,
},
UnsupportedVersion {
detected: u32,
supported: u32,
},
}
Variants
Io
Fields
source: Error
TooManyElements
Fields
ElementTooBig
Fields
CorruptedFile
Fields
msg: String
UnsupportedVersion
Trait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more
Returns an iterator for traversing the chain of errors,
starting with the current error
and continuing with recursive calls to Error::source
. Read more