pub struct ErrorBuilder;Expand description
Builder for creating specific error types
Implementations§
Source§impl ErrorBuilder
impl ErrorBuilder
Sourcepub fn data_error(kind: DataErrorKind, context: &str) -> LinearModelError
pub fn data_error(kind: DataErrorKind, context: &str) -> LinearModelError
Create a data error
Sourcepub fn numerical_error(
kind: NumericalErrorKind,
operation: &str,
context: &str,
) -> LinearModelError
pub fn numerical_error( kind: NumericalErrorKind, operation: &str, context: &str, ) -> LinearModelError
Create a numerical error
Sourcepub fn optimization_error(
kind: OptimizationErrorKind,
algorithm: &str,
iteration: Option<usize>,
max_iterations: Option<usize>,
) -> LinearModelError
pub fn optimization_error( kind: OptimizationErrorKind, algorithm: &str, iteration: Option<usize>, max_iterations: Option<usize>, ) -> LinearModelError
Create an optimization error
Auto Trait Implementations§
impl Freeze for ErrorBuilder
impl RefUnwindSafe for ErrorBuilder
impl Send for ErrorBuilder
impl Sync for ErrorBuilder
impl Unpin for ErrorBuilder
impl UnwindSafe for ErrorBuilder
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more