#[non_exhaustive]pub enum DiscoveryMode {
StrictSpecOnly,
Heuristic,
}Expand description
Controls how GTS identifier candidates are discovered in markdown files.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
StrictSpecOnly
Only match well-formed GTS patterns — fewer false positives (default).
Heuristic
Permissive regex catches ALL gts.* strings including malformed IDs. Use for strict CI enforcement where every malformed ID must be reported.
Trait Implementations§
Source§impl Clone for DiscoveryMode
impl Clone for DiscoveryMode
Source§fn clone(&self) -> DiscoveryMode
fn clone(&self) -> DiscoveryMode
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 DiscoveryMode
impl Debug for DiscoveryMode
Source§impl Default for DiscoveryMode
impl Default for DiscoveryMode
Source§fn default() -> DiscoveryMode
fn default() -> DiscoveryMode
Returns the “default value” for a type. Read more
impl Eq for DiscoveryMode
Source§impl PartialEq for DiscoveryMode
impl PartialEq for DiscoveryMode
Source§fn eq(&self, other: &DiscoveryMode) -> bool
fn eq(&self, other: &DiscoveryMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DiscoveryMode
Auto Trait Implementations§
impl Freeze for DiscoveryMode
impl RefUnwindSafe for DiscoveryMode
impl Send for DiscoveryMode
impl Sync for DiscoveryMode
impl Unpin for DiscoveryMode
impl UnsafeUnpin for DiscoveryMode
impl UnwindSafe for DiscoveryMode
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.