pub enum AnnotationAnchorStatus {
Resolved,
Ambiguous {
candidate_paths: Vec<String>,
},
Orphaned,
}Expand description
Snapshot-time resolution state for a file-backed context annotation.
Variants§
Resolved
The target path currently resolves, including after a confident move.
Ambiguous
More than one path passed the rename confidence threshold.
Orphaned
The target disappeared and no path passed the rename threshold.
Trait Implementations§
Source§impl Clone for AnnotationAnchorStatus
impl Clone for AnnotationAnchorStatus
Source§fn clone(&self) -> AnnotationAnchorStatus
fn clone(&self) -> AnnotationAnchorStatus
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 AnnotationAnchorStatus
impl Debug for AnnotationAnchorStatus
Source§impl Default for AnnotationAnchorStatus
impl Default for AnnotationAnchorStatus
Source§fn default() -> AnnotationAnchorStatus
fn default() -> AnnotationAnchorStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnnotationAnchorStatus
impl<'de> Deserialize<'de> for AnnotationAnchorStatus
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 AnnotationAnchorStatus
Source§impl PartialEq for AnnotationAnchorStatus
impl PartialEq for AnnotationAnchorStatus
Source§impl Serialize for AnnotationAnchorStatus
impl Serialize for AnnotationAnchorStatus
impl StructuralPartialEq for AnnotationAnchorStatus
Auto Trait Implementations§
impl Freeze for AnnotationAnchorStatus
impl RefUnwindSafe for AnnotationAnchorStatus
impl Send for AnnotationAnchorStatus
impl Sync for AnnotationAnchorStatus
impl Unpin for AnnotationAnchorStatus
impl UnsafeUnpin for AnnotationAnchorStatus
impl UnwindSafe for AnnotationAnchorStatus
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