pub struct PureRenameResult {
pub count: usize,
pub old_name: String,
pub new_name: String,
}Expand description
Result of a rename operation.
Fields§
§count: usizeNumber of occurrences renamed.
old_name: StringOld name.
new_name: StringNew name.
Trait Implementations§
Source§impl Clone for PureRenameResult
impl Clone for PureRenameResult
Source§fn clone(&self) -> PureRenameResult
fn clone(&self) -> PureRenameResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PureRenameResult
impl RefUnwindSafe for PureRenameResult
impl Send for PureRenameResult
impl Sync for PureRenameResult
impl Unpin for PureRenameResult
impl UnsafeUnpin for PureRenameResult
impl UnwindSafe for PureRenameResult
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