pub enum ValidationSetResolveError {
MissingGlobalRule {
name: String,
},
Merge(ValidationMergeError),
}Variants§
Trait Implementations§
Source§impl Clone for ValidationSetResolveError
impl Clone for ValidationSetResolveError
Source§fn clone(&self) -> ValidationSetResolveError
fn clone(&self) -> ValidationSetResolveError
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 ValidationSetResolveError
impl Debug for ValidationSetResolveError
Source§impl Display for ValidationSetResolveError
impl Display for ValidationSetResolveError
impl Eq for ValidationSetResolveError
Source§impl Error for ValidationSetResolveError
impl Error for ValidationSetResolveError
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 From<ValidationMergeError> for ValidationSetResolveError
impl From<ValidationMergeError> for ValidationSetResolveError
Source§fn from(source: ValidationMergeError) -> Self
fn from(source: ValidationMergeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ValidationSetResolveError
impl PartialEq for ValidationSetResolveError
Source§fn eq(&self, other: &ValidationSetResolveError) -> bool
fn eq(&self, other: &ValidationSetResolveError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidationSetResolveError
Auto Trait Implementations§
impl Freeze for ValidationSetResolveError
impl RefUnwindSafe for ValidationSetResolveError
impl Send for ValidationSetResolveError
impl Sync for ValidationSetResolveError
impl Unpin for ValidationSetResolveError
impl UnsafeUnpin for ValidationSetResolveError
impl UnwindSafe for ValidationSetResolveError
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