Enum tauri_codegen::ConfigError [−][src]
#[non_exhaustive]
pub enum ConfigError {
CurrentDir(Error),
Parent(PathBuf),
FormatInline(Error),
Format {
path: PathBuf,
error: Error,
},
Io {
path: PathBuf,
error: Error,
},
}Expand description
Represents all the errors that can happen while reading the config.
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.
CurrentDir(Error)Parent(PathBuf)FormatInline(Error)Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ConfigErrorimpl Send for ConfigErrorimpl Sync for ConfigErrorimpl Unpin for ConfigErrorimpl !UnwindSafe for ConfigError