pub enum CheckSyncError {
MatchFailed(MatchFailed),
}
Expand description
An error which can occur when checking readme and docs for equality.
Variants§
MatchFailed(MatchFailed)
Readme and docs are not the same.
Trait Implementations§
Source§impl Clone for CheckSyncError
impl Clone for CheckSyncError
Source§fn clone(&self) -> CheckSyncError
fn clone(&self) -> CheckSyncError
Returns a copy of the value. Read more
1.0.0 · 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 CheckSyncError
impl Debug for CheckSyncError
Source§impl Display for CheckSyncError
impl Display for CheckSyncError
Source§impl Error for CheckSyncError
impl Error for CheckSyncError
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()
Auto Trait Implementations§
impl Freeze for CheckSyncError
impl RefUnwindSafe for CheckSyncError
impl Send for CheckSyncError
impl Sync for CheckSyncError
impl Unpin for CheckSyncError
impl UnwindSafe for CheckSyncError
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