pub struct ModInfo {
pub source: String,
pub id: String,
pub name: String,
pub version: String,
pub authors: String,
pub description: String,
}Expand description
Metadata of an installed mod, as reported by the loader.
Fields§
§source: String"yog" for .yog mods, "platform" for loader (Java) mods.
id: String§name: String§version: StringComma-separated author list (may be empty).
description: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for ModInfo
impl RefUnwindSafe for ModInfo
impl Send for ModInfo
impl Sync for ModInfo
impl Unpin for ModInfo
impl UnsafeUnpin for ModInfo
impl UnwindSafe for ModInfo
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