Enum rs2cache::cache::CacheError
source · pub enum CacheError {
Io(Error),
Js5Compression(Js5CompressionError),
Js5Index(Js5IndexError),
Store(StoreError),
ArchiveError(ArchiveError),
ArchiveNotFound(u8),
ArchiveRead(u8),
}Variants§
Io(Error)
Js5Compression(Js5CompressionError)
Js5Index(Js5IndexError)
Store(StoreError)
ArchiveError(ArchiveError)
ArchiveNotFound(u8)
ArchiveRead(u8)
Trait Implementations§
source§impl Debug for CacheError
impl Debug for CacheError
source§impl Display for CacheError
impl Display for CacheError
source§impl Error for CacheError
impl Error for CacheError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<Error> for CacheError
impl From<Error> for CacheError
source§impl From<StoreError> for CacheError
impl From<StoreError> for CacheError
source§fn from(source: StoreError) -> Self
fn from(source: StoreError) -> Self
Converts to this type from the input type.