pub struct DuplicateTitle {
pub title: String,
pub page_ids: Vec<PageId>,
}Expand description
A set of pages that share the same title (case-insensitive).
Fields§
§title: StringThe shared title (original casing from the first match).
page_ids: Vec<PageId>Page ids sharing this title.
Trait Implementations§
Source§impl Clone for DuplicateTitle
impl Clone for DuplicateTitle
Source§fn clone(&self) -> DuplicateTitle
fn clone(&self) -> DuplicateTitle
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 DuplicateTitle
impl RefUnwindSafe for DuplicateTitle
impl Send for DuplicateTitle
impl Sync for DuplicateTitle
impl Unpin for DuplicateTitle
impl UnsafeUnpin for DuplicateTitle
impl UnwindSafe for DuplicateTitle
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