diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-22 13:56:06 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-22 13:56:06 +0100 |
commit | ec76bbe5398f51ffa55bfd315b30c0a07245d4e6 (patch) | |
tree | fa0e1723f861de6fee21a35524bb7768fab0b6ce /remuxer/src/lib.rs | |
parent | 84e093afa908dc68a7b0ae97ba8dc76aa0901d26 (diff) | |
download | jellything-ec76bbe5398f51ffa55bfd315b30c0a07245d4e6.tar jellything-ec76bbe5398f51ffa55bfd315b30c0a07245d4e6.tar.bz2 jellything-ec76bbe5398f51ffa55bfd315b30c0a07245d4e6.tar.zst |
this is *horrible*
Diffstat (limited to 'remuxer/src/lib.rs')
-rw-r--r-- | remuxer/src/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/remuxer/src/lib.rs b/remuxer/src/lib.rs index fabde10..12acae3 100644 --- a/remuxer/src/lib.rs +++ b/remuxer/src/lib.rs @@ -13,11 +13,12 @@ use jellymatroska::{ use log::{debug, info, trace, warn}; use std::{collections::VecDeque, fs::File, io::Write, path::PathBuf, sync::Arc}; +#[derive(Debug, Clone)] pub struct RemuxerContext {} impl RemuxerContext { - pub fn new() -> Arc<Self> { - Arc::new(Self {}) + pub fn new() -> Self { + Self {} } pub fn generate_into( |