pub enum LinkCheckResult {
Ok,
Failed(String),
Warning(String),
Ignored(String),
NotImplemented(String),
}Variants§
Trait Implementations§
Source§impl Clone for LinkCheckResult
impl Clone for LinkCheckResult
Source§fn clone(&self) -> LinkCheckResult
fn clone(&self) -> LinkCheckResult
Returns a duplicate 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 LinkCheckResult
impl Debug for LinkCheckResult
Source§impl PartialEq for LinkCheckResult
impl PartialEq for LinkCheckResult
impl Eq for LinkCheckResult
impl StructuralPartialEq for LinkCheckResult
Auto Trait Implementations§
impl Freeze for LinkCheckResult
impl RefUnwindSafe for LinkCheckResult
impl Send for LinkCheckResult
impl Sync for LinkCheckResult
impl Unpin for LinkCheckResult
impl UnwindSafe for LinkCheckResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.