pub struct Error { /* private fields */ }Expand description
A catboost error.
This is just a wrapper around an error message that
can only be constructed by reading the last error
message using the Error::fetch_catboost_error method.
Implementations§
Source§impl Error
impl Error
Sourcepub fn call<T>(ret_val: bool, val: T) -> Result<T>
pub fn call<T>(ret_val: bool, val: T) -> Result<T>
Shorthand for checking the result of a FFI call.
If the ret_val is true, the call was successfull and
Ok(val) is returned. If the return value is false,
the error message is fetched and returned.
Sourcepub fn fetch_catboost_error() -> Self
pub fn fetch_catboost_error() -> Self
Fetch current error message from CatBoost
using the sys::GetErrorString FFI call.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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()
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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