pub enum FileRelocationMode {
None,
Copy,
Move,
}
Expand description
File relocation mode for matched subtitle files
Variants§
None
No file relocation
Copy
Copy subtitle files to video folders
Move
Move subtitle files to video folders
Trait Implementations§
Source§impl Clone for FileRelocationMode
impl Clone for FileRelocationMode
Source§fn clone(&self) -> FileRelocationMode
fn clone(&self) -> FileRelocationMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FileRelocationMode
impl Debug for FileRelocationMode
Source§impl PartialEq for FileRelocationMode
impl PartialEq for FileRelocationMode
impl StructuralPartialEq for FileRelocationMode
Auto Trait Implementations§
impl Freeze for FileRelocationMode
impl RefUnwindSafe for FileRelocationMode
impl Send for FileRelocationMode
impl Sync for FileRelocationMode
impl Unpin for FileRelocationMode
impl UnwindSafe for FileRelocationMode
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