pub struct CollectionMod {
pub mod_id: NexusModId,
pub file_id: NexusFileId,
pub name: String,
pub version: String,
pub optional: bool,
pub install_order: i32,
pub patch: Option<CollectionPatch>,
}Fields§
§mod_id: NexusModId§file_id: NexusFileId§name: String§version: String§optional: bool§install_order: i32§patch: Option<CollectionPatch>Trait Implementations§
Source§impl Clone for CollectionMod
impl Clone for CollectionMod
Source§fn clone(&self) -> CollectionMod
fn clone(&self) -> CollectionMod
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 moreSource§impl Debug for CollectionMod
impl Debug for CollectionMod
Source§impl<'de> Deserialize<'de> for CollectionMod
impl<'de> Deserialize<'de> for CollectionMod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CollectionMod
impl RefUnwindSafe for CollectionMod
impl Send for CollectionMod
impl Sync for CollectionMod
impl Unpin for CollectionMod
impl UnsafeUnpin for CollectionMod
impl UnwindSafe for CollectionMod
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