pub struct PrunedRef {
pub branch: String,
pub refname: String,
}Expand description
A remote-tracking ref removed by a prune pass.
Fields§
§branch: StringThe short branch name on the remote (e.g. topic).
refname: StringThe full local ref name removed (e.g. refs/remotes/origin/topic).
Trait Implementations§
impl Eq for PrunedRef
impl StructuralPartialEq for PrunedRef
Auto Trait Implementations§
impl Freeze for PrunedRef
impl RefUnwindSafe for PrunedRef
impl Send for PrunedRef
impl Sync for PrunedRef
impl Unpin for PrunedRef
impl UnsafeUnpin for PrunedRef
impl UnwindSafe for PrunedRef
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