pub struct Domain2dError {
pub x: f64,
pub y: f64,
}Expand description
Returned when the supplied value is outside the range of the supplied xdata or ydata.
Fields§
§x: f64§y: f64Trait Implementations§
Source§impl Debug for Domain2dError
impl Debug for Domain2dError
Source§impl Display for Domain2dError
impl Display for Domain2dError
Source§impl Error for Domain2dError
impl Error for Domain2dError
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()
Source§impl From<Domain2dError> for InterpolationError
impl From<Domain2dError> for InterpolationError
Source§fn from(source: Domain2dError) -> Self
fn from(source: Domain2dError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Domain2dError
impl RefUnwindSafe for Domain2dError
impl Send for Domain2dError
impl Sync for Domain2dError
impl Unpin for Domain2dError
impl UnsafeUnpin for Domain2dError
impl UnwindSafe for Domain2dError
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