pub enum ModSource {
Filesystem {
location: String,
},
Archive {
archive_name: String,
},
}Expand description
Where a DiscoveredMod was found: an on-disk location or inside an archive.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModSource
impl RefUnwindSafe for ModSource
impl Send for ModSource
impl Sync for ModSource
impl Unpin for ModSource
impl UnsafeUnpin for ModSource
impl UnwindSafe for ModSource
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