pub enum LineSearchError {
InvalidStartingPoint(String),
MaximumStepsReached(String, usize),
NegativeStepSize(String, Scalar),
NotDescentDirection(String),
}Expand description
Possible errors encountered during line search.
Variants§
InvalidStartingPoint(String)
MaximumStepsReached(String, usize)
NegativeStepSize(String, Scalar)
NotDescentDirection(String)
Trait Implementations§
Source§impl Debug for LineSearchError
impl Debug for LineSearchError
Source§impl Display for LineSearchError
impl Display for LineSearchError
Source§impl Error for LineSearchError
impl Error for LineSearchError
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 LineSearchError
impl RefUnwindSafe for LineSearchError
impl Send for LineSearchError
impl Sync for LineSearchError
impl Unpin for LineSearchError
impl UnsafeUnpin for LineSearchError
impl UnwindSafe for LineSearchError
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