pub struct DirPlan {
pub role: String,
pub renames: Vec<Rename>,
pub reference_hits: Vec<(String, usize)>,
}Expand description
The full plan for one directory: (renames, reference-rewrite hits).
Fields§
§role: String§renames: Vec<Rename>§reference_hits: Vec<(String, usize)>Auto Trait Implementations§
impl Freeze for DirPlan
impl RefUnwindSafe for DirPlan
impl Send for DirPlan
impl Sync for DirPlan
impl Unpin for DirPlan
impl UnsafeUnpin for DirPlan
impl UnwindSafe for DirPlan
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