pub enum RenameCommand {
SetExtension(String),
Remove(String),
Prefix(String),
FixExtension(bool),
Normalize,
Replace(String, String, bool),
ChangeCase(bool),
}Variants§
SetExtension(String)
Remove(String)
Prefix(String)
FixExtension(bool)
Normalize
Replace(String, String, bool)
ChangeCase(bool)
Auto Trait Implementations§
impl Freeze for RenameCommand
impl RefUnwindSafe for RenameCommand
impl Send for RenameCommand
impl Sync for RenameCommand
impl Unpin for RenameCommand
impl UnwindSafe for RenameCommand
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