pub enum SyncMode {
Single {
video: PathBuf,
subtitle: PathBuf,
},
Batch(InputPathHandler),
}
Expand description
Sync mode: single file or batch
Variants§
Single
Single file sync mode, specify video and subtitle files
Batch(InputPathHandler)
Batch sync mode, using InputPathHandler to process multiple paths
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncMode
impl RefUnwindSafe for SyncMode
impl Send for SyncMode
impl Sync for SyncMode
impl Unpin for SyncMode
impl UnwindSafe for SyncMode
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