pub enum ReflectionError {
Validation(String),
Provider(String),
}Variants§
Trait Implementations§
Source§impl Clone for ReflectionError
impl Clone for ReflectionError
Source§fn clone(&self) -> ReflectionError
fn clone(&self) -> ReflectionError
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 ReflectionError
impl Debug for ReflectionError
Source§impl Display for ReflectionError
impl Display for ReflectionError
Source§impl Error for ReflectionError
impl Error for ReflectionError
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 PartialEq for ReflectionError
impl PartialEq for ReflectionError
impl Eq for ReflectionError
impl StructuralPartialEq for ReflectionError
Auto Trait Implementations§
impl Freeze for ReflectionError
impl RefUnwindSafe for ReflectionError
impl Send for ReflectionError
impl Sync for ReflectionError
impl Unpin for ReflectionError
impl UnsafeUnpin for ReflectionError
impl UnwindSafe for ReflectionError
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