pub struct ShadowedMod {
pub mod_id: ModId,
pub shadowed_by: Vec<ModId>,
pub file_count: usize,
}Expand description
A mod whose files are all overridden by higher-priority mods.
Fields§
§mod_id: ModId§shadowed_by: Vec<ModId>Which mods override this one’s files.
file_count: usizeTotal file count that is overridden.
Trait Implementations§
Source§impl Clone for ShadowedMod
impl Clone for ShadowedMod
Source§fn clone(&self) -> ShadowedMod
fn clone(&self) -> ShadowedMod
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 ShadowedMod
impl RefUnwindSafe for ShadowedMod
impl Send for ShadowedMod
impl Sync for ShadowedMod
impl Unpin for ShadowedMod
impl UnsafeUnpin for ShadowedMod
impl UnwindSafe for ShadowedMod
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