Modpack

Struct Modpack 

Source
pub struct Modpack {
    pub pack_format: u16,
    pub name: String,
    pub summary: String,
    pub author: String,
    pub require_all: bool,
    pub auto_dependencies: bool,
    pub branches: Vec<String>,
    pub projects: IndexMap<String, ProjectSettings>,
    pub directory: PathBuf,
    pub modpack_config_path: PathBuf,
}
Expand description

Config file at the root of the project. File is named modpack.json.

Fields§

§pack_format: u16§name: String§summary: String§author: String§require_all: bool§auto_dependencies: bool§branches: Vec<String>§projects: IndexMap<String, ProjectSettings>§directory: PathBuf§modpack_config_path: PathBuf

Implementations§

Source§

impl Modpack

Source

pub fn new(directory: &Path) -> Result<Self, PackrinthError>

Source

pub fn from_directory(directory: &Path) -> Result<Self, PackrinthError>

Source

pub fn add_projects( &mut self, projects: &[String], version_overrides: &Option<IndexMap<String, String>>, include_or_exclude: &Option<IncludeOrExclude>, )

Source

pub fn add_project_override( &mut self, project: &str, branch: &str, project_version_id: &str, ) -> Result<(), PackrinthError>

Source

pub fn remove_project_override( &mut self, project: &str, branch: &str, ) -> Result<(), PackrinthError>

Source

pub fn remove_all_project_overrides( &mut self, project: &str, ) -> Result<(), PackrinthError>

Source

pub fn add_project_inclusions( &mut self, project: &str, new_inclusions: &[String], ) -> Result<(), PackrinthError>

Source

pub fn remove_project_inclusions( &mut self, project: &str, inclusions_to_remove: &[String], ) -> Result<(), PackrinthError>

Source

pub fn remove_all_project_inclusions( &mut self, project: &str, ) -> Result<(), PackrinthError>

Source

pub fn add_project_exclusions( &mut self, project: &str, new_exclusions: &[String], ) -> Result<(), PackrinthError>

Source

pub fn remove_project_exclusions( &mut self, project: &str, exclusions_to_remove: &[String], ) -> Result<(), PackrinthError>

Source

pub fn remove_all_project_exclusions( &mut self, project: &str, ) -> Result<(), PackrinthError>

Source

pub fn remove_projects(&mut self, projects: &[String])

Source

pub fn new_branch( &mut self, name: &String, ) -> Result<BranchConfig, PackrinthError>

Creates new branches. If it already exists, it just returns the existing branch.

Source

pub fn remove_branches(&mut self, branch_names: &Vec<String>)

Source

pub fn save(&self) -> Result<(), PackrinthError>

Source

pub fn export_branch(&self, branch: &String) -> Result<PathBuf, PackrinthError>

Trait Implementations§

Source§

impl Debug for Modpack

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Modpack

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Modpack

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,