pub enum CommandWorkspaceProviderSetupError {
EmptyCommand,
ReservedEnvironmentKey(String),
InvalidEnvironmentEntry(String),
}Expand description
Why a command-backed workspace provider could not be built.
Variants§
EmptyCommand
The materializer command was empty.
ReservedEnvironmentKey(String)
A protected environment value was supplied by the operator.
InvalidEnvironmentEntry(String)
An environment key or value cannot be passed to a process.
Trait Implementations§
Source§impl Error for CommandWorkspaceProviderSetupError
impl Error for CommandWorkspaceProviderSetupError
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()
Auto Trait Implementations§
impl Freeze for CommandWorkspaceProviderSetupError
impl RefUnwindSafe for CommandWorkspaceProviderSetupError
impl Send for CommandWorkspaceProviderSetupError
impl Sync for CommandWorkspaceProviderSetupError
impl Unpin for CommandWorkspaceProviderSetupError
impl UnsafeUnpin for CommandWorkspaceProviderSetupError
impl UnwindSafe for CommandWorkspaceProviderSetupError
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