pub struct TryFromParameterError {
pub expected: &'static str,
pub found: &'static str,
}Fields§
§expected: &'static str§found: &'static strTrait Implementations§
Source§impl Clone for TryFromParameterError
impl Clone for TryFromParameterError
Source§fn clone(&self) -> TryFromParameterError
fn clone(&self) -> TryFromParameterError
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 moreSource§impl Debug for TryFromParameterError
impl Debug for TryFromParameterError
Source§impl Display for TryFromParameterError
impl Display for TryFromParameterError
Source§impl Error for TryFromParameterError
impl Error for TryFromParameterError
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 TryFromParameterError
impl RefUnwindSafe for TryFromParameterError
impl Send for TryFromParameterError
impl Sync for TryFromParameterError
impl Unpin for TryFromParameterError
impl UnsafeUnpin for TryFromParameterError
impl UnwindSafe for TryFromParameterError
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