pub struct AmbiguousPath {
pub path: PathBuf,
pub candidates: Vec<String>,
}Expand description
A path that multiple rules claim and which cannot be resolved without a
user decision (recorded in .rtango/lock.yaml under owners: or via
rtango own).
Fields§
§path: PathBuf§candidates: Vec<String>All rule ids that claim this path, sorted.
Trait Implementations§
Source§impl Clone for AmbiguousPath
impl Clone for AmbiguousPath
Source§fn clone(&self) -> AmbiguousPath
fn clone(&self) -> AmbiguousPath
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 AmbiguousPath
impl Debug for AmbiguousPath
Source§impl PartialEq for AmbiguousPath
impl PartialEq for AmbiguousPath
Source§fn eq(&self, other: &AmbiguousPath) -> bool
fn eq(&self, other: &AmbiguousPath) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AmbiguousPath
impl StructuralPartialEq for AmbiguousPath
Auto Trait Implementations§
impl Freeze for AmbiguousPath
impl RefUnwindSafe for AmbiguousPath
impl Send for AmbiguousPath
impl Sync for AmbiguousPath
impl Unpin for AmbiguousPath
impl UnsafeUnpin for AmbiguousPath
impl UnwindSafe for AmbiguousPath
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.