Enum tauri_codegen::embedded_assets::EmbeddedAssetsError [−][src]
#[non_exhaustive]
pub enum EmbeddedAssetsError {
AssetRead {
path: PathBuf,
error: Error,
},
AssetWrite {
path: PathBuf,
error: Error,
},
PrefixInvalid {
prefix: PathBuf,
path: PathBuf,
},
Walkdir {
path: PathBuf,
error: Error,
},
OutDir,
}Expand description
All possible errors while reading and compressing an EmbeddedAssets directory
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for EmbeddedAssetsErrorimpl Send for EmbeddedAssetsErrorimpl Sync for EmbeddedAssetsErrorimpl Unpin for EmbeddedAssetsErrorimpl !UnwindSafe for EmbeddedAssetsError