pub struct CopyResolutionError<R> {
pub rule: &'static str,
pub destination: Option<CopyDestination<R>>,
pub message: String,
}Expand description
Malformed copy rows or an inconsistent resolver state.
Fields§
§rule: &'static str§destination: Option<CopyDestination<R>>§message: StringTrait Implementations§
Source§impl<R: Clone> Clone for CopyResolutionError<R>
impl<R: Clone> Clone for CopyResolutionError<R>
Source§fn clone(&self) -> CopyResolutionError<R>
fn clone(&self) -> CopyResolutionError<R>
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<R: Debug> Debug for CopyResolutionError<R>
impl<R: Debug> Debug for CopyResolutionError<R>
Source§impl<R: Debug> Display for CopyResolutionError<R>
impl<R: Debug> Display for CopyResolutionError<R>
impl<R: Eq> Eq for CopyResolutionError<R>
Source§impl<R: Debug> Error for CopyResolutionError<R>
impl<R: Debug> Error for CopyResolutionError<R>
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<R: PartialEq> PartialEq for CopyResolutionError<R>
impl<R: PartialEq> PartialEq for CopyResolutionError<R>
impl<R: PartialEq> StructuralPartialEq for CopyResolutionError<R>
Auto Trait Implementations§
impl<R> Freeze for CopyResolutionError<R>
impl<R> RefUnwindSafe for CopyResolutionError<R>
impl<R> Send for CopyResolutionError<R>
impl<R> Sync for CopyResolutionError<R>
impl<R> Unpin for CopyResolutionError<R>
impl<R> UnsafeUnpin for CopyResolutionError<R>
impl<R> UnwindSafe for CopyResolutionError<R>
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