pub enum VerdictValidationError {
EmptySummary,
SummaryTooLong {
actual: usize,
maximum: usize,
},
TooManyEvidenceReferences {
actual: usize,
maximum: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for VerdictValidationError
impl Clone for VerdictValidationError
Source§fn clone(&self) -> VerdictValidationError
fn clone(&self) -> VerdictValidationError
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 moreimpl Copy for VerdictValidationError
Source§impl Debug for VerdictValidationError
impl Debug for VerdictValidationError
Source§impl Display for VerdictValidationError
impl Display for VerdictValidationError
impl Eq for VerdictValidationError
Source§impl Error for VerdictValidationError
impl Error for VerdictValidationError
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 VerdictValidationError
impl PartialEq for VerdictValidationError
impl StructuralPartialEq for VerdictValidationError
Auto Trait Implementations§
impl Freeze for VerdictValidationError
impl RefUnwindSafe for VerdictValidationError
impl Send for VerdictValidationError
impl Sync for VerdictValidationError
impl Unpin for VerdictValidationError
impl UnsafeUnpin for VerdictValidationError
impl UnwindSafe for VerdictValidationError
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