Enum cargo_zenoh_flow::error::CZFError
source · pub enum CZFError {
Show 16 variants
PackageNotFoundInWorkspace(String, String),
NoRootFoundInWorkspace(String),
CrateTypeNotCompatible(String),
LanguageNotCompatible(String),
CommandFailed(Error, &'static str),
CommandError(&'static str, String, Vec<u8>),
ParseTOML(Error),
ParseJSON(Error),
ParseYAML(Error),
MissingField(String, &'static str),
IoFile(&'static str, Error, PathBuf),
ParsingError(&'static str),
BuildFailed,
ZenohFlowError(Error),
GenericError(String),
IoError(Error),
}Variants§
PackageNotFoundInWorkspace(String, String)
NoRootFoundInWorkspace(String)
CrateTypeNotCompatible(String)
LanguageNotCompatible(String)
CommandFailed(Error, &'static str)
CommandError(&'static str, String, Vec<u8>)
ParseTOML(Error)
ParseJSON(Error)
ParseYAML(Error)
MissingField(String, &'static str)
IoFile(&'static str, Error, PathBuf)
ParsingError(&'static str)
BuildFailed
ZenohFlowError(Error)
GenericError(String)
IoError(Error)
Trait Implementations§
source§impl Error for CZFError
impl Error for CZFError
1.30.0 · 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()
Auto Trait Implementations§
impl !RefUnwindSafe for CZFError
impl Send for CZFError
impl Sync for CZFError
impl Unpin for CZFError
impl !UnwindSafe for CZFError
Blanket Implementations§
§impl<T> AsNodeMut<T> for T
impl<T> AsNodeMut<T> for T
fn as_node_mut(&mut self) -> &mut T
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