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