pub enum DocumentTargetUnresolvedReason {
Missing,
Ignored,
OutsideRoot,
CaseConflict,
Unsupported,
NoStaticTarget,
}Expand description
Closed reason that an explicit document target did not resolve.
Variants§
Missing
No indexed target exists for the normalized selector.
Ignored
Effective ignore or admission policy excludes the target.
OutsideRoot
Normalization or canonicalization would leave the selected root.
CaseConflict
Exact-case identity is absent or conflicts under case folding.
Unsupported
The candidate names an unsupported target kind or syntax.
NoStaticTarget
No complete static repository selector could be extracted.
Implementations§
Trait Implementations§
Source§impl Clone for DocumentTargetUnresolvedReason
impl Clone for DocumentTargetUnresolvedReason
Source§fn clone(&self) -> DocumentTargetUnresolvedReason
fn clone(&self) -> DocumentTargetUnresolvedReason
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 DocumentTargetUnresolvedReason
Source§impl<'de> Deserialize<'de> for DocumentTargetUnresolvedReason
impl<'de> Deserialize<'de> for DocumentTargetUnresolvedReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DocumentTargetUnresolvedReason
Source§impl Ord for DocumentTargetUnresolvedReason
impl Ord for DocumentTargetUnresolvedReason
Source§fn cmp(&self, other: &DocumentTargetUnresolvedReason) -> Ordering
fn cmp(&self, other: &DocumentTargetUnresolvedReason) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DocumentTargetUnresolvedReason
impl PartialEq for DocumentTargetUnresolvedReason
Source§fn eq(&self, other: &DocumentTargetUnresolvedReason) -> bool
fn eq(&self, other: &DocumentTargetUnresolvedReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DocumentTargetUnresolvedReason
impl PartialOrd for DocumentTargetUnresolvedReason
impl StructuralPartialEq for DocumentTargetUnresolvedReason
Auto Trait Implementations§
impl Freeze for DocumentTargetUnresolvedReason
impl RefUnwindSafe for DocumentTargetUnresolvedReason
impl Send for DocumentTargetUnresolvedReason
impl Sync for DocumentTargetUnresolvedReason
impl Unpin for DocumentTargetUnresolvedReason
impl UnsafeUnpin for DocumentTargetUnresolvedReason
impl UnwindSafe for DocumentTargetUnresolvedReason
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§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.