pub struct ProfileAnalysis {
pub resolved_order: Vec<ModId>,
pub conflict_map: ConflictMap,
pub collision_report: Option<CollisionReport>,
pub missing_store_mods: Vec<ModId>,
}Expand description
Shared analysis result used by the CLI, UI, and tests.
Fields§
§resolved_order: Vec<ModId>§conflict_map: ConflictMap§collision_report: Option<CollisionReport>§missing_store_mods: Vec<ModId>Auto Trait Implementations§
impl Freeze for ProfileAnalysis
impl RefUnwindSafe for ProfileAnalysis
impl Send for ProfileAnalysis
impl Sync for ProfileAnalysis
impl Unpin for ProfileAnalysis
impl UnsafeUnpin for ProfileAnalysis
impl UnwindSafe for ProfileAnalysis
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