pub struct DuplicateId {
pub id: PageId,
pub paths: Vec<PathBuf>,
}Expand description
A set of .lepiter files that resolve to the same page id.
Fields§
§id: PageIdThe shared page id.
paths: Vec<PathBuf>Paths of the files claiming this id, sorted.
Trait Implementations§
Source§impl Clone for DuplicateId
impl Clone for DuplicateId
Source§fn clone(&self) -> DuplicateId
fn clone(&self) -> DuplicateId
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 moreAuto Trait Implementations§
impl Freeze for DuplicateId
impl RefUnwindSafe for DuplicateId
impl Send for DuplicateId
impl Sync for DuplicateId
impl Unpin for DuplicateId
impl UnsafeUnpin for DuplicateId
impl UnwindSafe for DuplicateId
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