#[non_exhaustive]pub enum MaterializerError {
Io(Error),
MissingVar(String),
Backend(String),
}Expand description
Errors that can occur while materializing a .env file from a manifest.
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.
Io(Error)
I/O error while reading or writing files.
MissingVar(String)
The manifest referenced a variable that is missing from the registry.
Backend(String)
The materializer backend reported an unexpected failure.
Backend implementors MUST NOT include the rendered values, the secret material, or absolute path components in this string.
Trait Implementations§
Source§impl Debug for MaterializerError
impl Debug for MaterializerError
Source§impl Display for MaterializerError
impl Display for MaterializerError
Source§impl Error for MaterializerError
impl Error for MaterializerError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 MaterializerError
impl From<Error> for MaterializerError
Source§impl From<MaterializerError> for CoreError
impl From<MaterializerError> for CoreError
Source§fn from(source: MaterializerError) -> Self
fn from(source: MaterializerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MaterializerError
impl !RefUnwindSafe for MaterializerError
impl Send for MaterializerError
impl Sync for MaterializerError
impl Unpin for MaterializerError
impl UnsafeUnpin for MaterializerError
impl !UnwindSafe for MaterializerError
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