mirror of
https://github.com/xavo95/repak.git
synced 2025-01-18 10:54:38 +00:00
Impl PakBuilder::default
This commit is contained in:
parent
c9abc25336
commit
bb2f0927e1
1 changed files with 6 additions and 0 deletions
|
@ -14,6 +14,12 @@ pub struct PakBuilder {
|
||||||
allowed_compression: Vec<Compression>,
|
allowed_compression: Vec<Compression>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Default for PakBuilder {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl PakBuilder {
|
impl PakBuilder {
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self {
|
Self {
|
||||||
|
|
Loading…
Reference in a new issue