pub enum ResultMapError {
MapNotFound {
id: String,
},
RequiredColumnMissing {
column: String,
},
NestedMappingFailed {
property: String,
reason: String,
},
}Expand description
ResultMap 错误
Variants§
Trait Implementations§
Source§impl Clone for ResultMapError
impl Clone for ResultMapError
Source§fn clone(&self) -> ResultMapError
fn clone(&self) -> ResultMapError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResultMapError
impl Debug for ResultMapError
Source§impl Display for ResultMapError
impl Display for ResultMapError
Source§impl Error for ResultMapError
impl Error for ResultMapError
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 ResultMapError
impl PartialEq for ResultMapError
impl StructuralPartialEq for ResultMapError
Auto Trait Implementations§
impl Freeze for ResultMapError
impl RefUnwindSafe for ResultMapError
impl Send for ResultMapError
impl Sync for ResultMapError
impl Unpin for ResultMapError
impl UnsafeUnpin for ResultMapError
impl UnwindSafe for ResultMapError
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