pub enum MarkdownFactCompleteness {
Complete,
Partial,
}Expand description
Completeness of one bounded Markdown extraction.
Variants§
Complete
All supported syntax was examined without reaching a fact limit.
Partial
A hard limit or explicitly unsupported structure prevented complete coverage.
Trait Implementations§
Source§impl Clone for MarkdownFactCompleteness
impl Clone for MarkdownFactCompleteness
Source§fn clone(&self) -> MarkdownFactCompleteness
fn clone(&self) -> MarkdownFactCompleteness
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 MarkdownFactCompleteness
Source§impl Debug for MarkdownFactCompleteness
impl Debug for MarkdownFactCompleteness
impl Eq for MarkdownFactCompleteness
Source§impl PartialEq for MarkdownFactCompleteness
impl PartialEq for MarkdownFactCompleteness
Source§fn eq(&self, other: &MarkdownFactCompleteness) -> bool
fn eq(&self, other: &MarkdownFactCompleteness) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MarkdownFactCompleteness
Auto Trait Implementations§
impl Freeze for MarkdownFactCompleteness
impl RefUnwindSafe for MarkdownFactCompleteness
impl Send for MarkdownFactCompleteness
impl Sync for MarkdownFactCompleteness
impl Unpin for MarkdownFactCompleteness
impl UnsafeUnpin for MarkdownFactCompleteness
impl UnwindSafe for MarkdownFactCompleteness
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.