pub struct ParamRangeError {
pub param: String,
pub value: String,
}Expand description
Parameter range error details
Fields§
§param: StringParameter name
value: StringAttempted value (as string for debugging)
Trait Implementations§
Source§impl Clone for ParamRangeError
impl Clone for ParamRangeError
Source§fn clone(&self) -> ParamRangeError
fn clone(&self) -> ParamRangeError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParamRangeError
impl RefUnwindSafe for ParamRangeError
impl Send for ParamRangeError
impl Sync for ParamRangeError
impl Unpin for ParamRangeError
impl UnwindSafe for ParamRangeError
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