pub struct SmudgeExtension {
pub name: String,
pub priority: u8,
pub command: String,
}Expand description
One pointer extension’s smudge side. Mirrors crate::CleanExtension
— separate types because clean/smudge commands are distinct config
keys (lfs.extension.<name>.clean vs .smudge) and different code
paths consume them.
Fields§
§name: String§priority: u8§command: StringTrait Implementations§
Source§impl Clone for SmudgeExtension
impl Clone for SmudgeExtension
Source§fn clone(&self) -> SmudgeExtension
fn clone(&self) -> SmudgeExtension
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 moreAuto Trait Implementations§
impl Freeze for SmudgeExtension
impl RefUnwindSafe for SmudgeExtension
impl Send for SmudgeExtension
impl Sync for SmudgeExtension
impl Unpin for SmudgeExtension
impl UnsafeUnpin for SmudgeExtension
impl UnwindSafe for SmudgeExtension
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