pub enum RemoteTrackingStatus {
UpToDate,
Ahead(usize),
Behind(usize),
Diverged(usize, usize),
}Variants§
Auto Trait Implementations§
impl Freeze for RemoteTrackingStatus
impl RefUnwindSafe for RemoteTrackingStatus
impl Send for RemoteTrackingStatus
impl Sync for RemoteTrackingStatus
impl Unpin for RemoteTrackingStatus
impl UnsafeUnpin for RemoteTrackingStatus
impl UnwindSafe for RemoteTrackingStatus
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