pub enum SecretResolutionError {
InvalidEnvName {
env: String,
},
FileRead {
path: String,
message: String,
},
EmptyExec,
ExecSpawn {
program: String,
message: String,
},
ExecWait {
program: String,
message: String,
},
ExecTimeout {
program: String,
timeout_ms: u64,
},
ExecFailed {
program: String,
status: String,
message: String,
},
ExecInvalidUtf8 {
program: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for SecretResolutionError
impl Clone for SecretResolutionError
Source§fn clone(&self) -> SecretResolutionError
fn clone(&self) -> SecretResolutionError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecretResolutionError
impl Debug for SecretResolutionError
Source§impl Display for SecretResolutionError
impl Display for SecretResolutionError
Source§impl Error for SecretResolutionError
impl Error for SecretResolutionError
1.30.0 · 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 PartialEq for SecretResolutionError
impl PartialEq for SecretResolutionError
impl Eq for SecretResolutionError
impl StructuralPartialEq for SecretResolutionError
Auto Trait Implementations§
impl Freeze for SecretResolutionError
impl RefUnwindSafe for SecretResolutionError
impl Send for SecretResolutionError
impl Sync for SecretResolutionError
impl Unpin for SecretResolutionError
impl UnsafeUnpin for SecretResolutionError
impl UnwindSafe for SecretResolutionError
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