Enum wdk_build::ExportError
source · pub enum ExportError {
MissingLinksValue(VarError),
SerializeError(Error),
}
Expand description
Errors that could result from exporting a [wdk-build
] build configuration
Variants§
MissingLinksValue(VarError)
Error returned when the crate being compiled does not have a links
value in its Cargo.toml
SerializeError(Error)
Error returned when serde_json
fails to serialize the Config
Trait Implementations§
source§impl Debug for ExportError
impl Debug for ExportError
source§impl Display for ExportError
impl Display for ExportError
source§impl Error for ExportError
impl Error for ExportError
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 ExportError
impl From<Error> for ExportError
source§impl From<ExportError> for ConfigError
impl From<ExportError> for ConfigError
source§fn from(source: ExportError) -> Self
fn from(source: ExportError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ExportError
impl Send for ExportError
impl Sync for ExportError
impl Unpin for ExportError
impl !UnwindSafe for ExportError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more