Enum redact_crypto::SourceError [−][src]
pub enum SourceError {
FsIoError {
source: Error,
},
FileNotFound {
path: String,
},
FilePathHasNoFileStem {
path: String,
},
FilePathIsInvalidUTF8,
Base64Decode {
source: DecodeError,
},
}Variants
Error occurred while performing IO on the filesystem
Fields of FsIoError
source: ErrorFile path given was not found
Fields of FileNotFound
path: StringFile path given has an invalid file name with no stem
Fields of FilePathHasNoFileStem
path: StringFile path given was invalid UTF-8
Error happened when decoding base64 string
Fields of Base64Decode
source: DecodeErrorTrait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for SourceErrorimpl Send for SourceErrorimpl Sync for SourceErrorimpl Unpin for SourceErrorimpl !UnwindSafe for SourceError