pub enum VF3Error {
ExecutionFailed {
code: i32,
},
FfiError {
message: String,
},
UnsupportedFormat {
format: String,
},
}Expand description
Errors that can occur during VF3 algorithm execution.
Variants§
ExecutionFailed
The VF3 algorithm execution failed with a non-zero status code.
FfiError
An error occurred in the FFI layer.
UnsupportedFormat
The specified graph format is not supported.
Trait Implementations§
Source§impl Error for VF3Error
impl Error for VF3Error
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 VF3Error
impl RefUnwindSafe for VF3Error
impl Send for VF3Error
impl Sync for VF3Error
impl Unpin for VF3Error
impl UnwindSafe for VF3Error
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