pub struct IndexColonSpec<'a> {
pub stage: u8,
pub raw_path: &'a str,
}Expand description
Parsed :path / :N:path index revision syntax (leading colon, not :/search).
Fields§
§stage: u8Merge stage (0 for normal entries, 1–3 for unmerged stages).
raw_path: &'a strPath segment before normalization against the work tree.
Trait Implementations§
Source§impl<'a> Clone for IndexColonSpec<'a>
impl<'a> Clone for IndexColonSpec<'a>
Source§fn clone(&self) -> IndexColonSpec<'a>
fn clone(&self) -> IndexColonSpec<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for IndexColonSpec<'a>
impl<'a> Debug for IndexColonSpec<'a>
Source§impl<'a> PartialEq for IndexColonSpec<'a>
impl<'a> PartialEq for IndexColonSpec<'a>
impl<'a> Copy for IndexColonSpec<'a>
impl<'a> Eq for IndexColonSpec<'a>
impl<'a> StructuralPartialEq for IndexColonSpec<'a>
Auto Trait Implementations§
impl<'a> Freeze for IndexColonSpec<'a>
impl<'a> RefUnwindSafe for IndexColonSpec<'a>
impl<'a> Send for IndexColonSpec<'a>
impl<'a> Sync for IndexColonSpec<'a>
impl<'a> Unpin for IndexColonSpec<'a>
impl<'a> UnsafeUnpin for IndexColonSpec<'a>
impl<'a> UnwindSafe for IndexColonSpec<'a>
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