pub struct ResolvedLoadOrder {
pub order: Vec<ModId>,
}Expand description
The result of resolving a profile’s load order.
Fields§
§order: Vec<ModId>Mods in final load order (first = lowest priority).
Trait Implementations§
Source§impl Clone for ResolvedLoadOrder
impl Clone for ResolvedLoadOrder
Source§fn clone(&self) -> ResolvedLoadOrder
fn clone(&self) -> ResolvedLoadOrder
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 ResolvedLoadOrder
impl RefUnwindSafe for ResolvedLoadOrder
impl Send for ResolvedLoadOrder
impl Sync for ResolvedLoadOrder
impl Unpin for ResolvedLoadOrder
impl UnsafeUnpin for ResolvedLoadOrder
impl UnwindSafe for ResolvedLoadOrder
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