Enum firepilot::builder::BuilderError
source · pub enum BuilderError {
MissingRequiredField(String),
BinaryNotFound(String),
}Variants§
MissingRequiredField(String)
The field is required but was not provided in the builder object
BinaryNotFound(String)
Happens when using auto methods to detect firecracker /jailer binary
Trait Implementations§
source§impl Debug for BuilderError
impl Debug for BuilderError
source§impl PartialEq<BuilderError> for BuilderError
impl PartialEq<BuilderError> for BuilderError
source§fn eq(&self, other: &BuilderError) -> bool
fn eq(&self, other: &BuilderError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for BuilderError
impl StructuralEq for BuilderError
impl StructuralPartialEq for BuilderError
Auto Trait Implementations§
impl RefUnwindSafe for BuilderError
impl Send for BuilderError
impl Sync for BuilderError
impl Unpin for BuilderError
impl UnwindSafe for BuilderError
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.