pub enum ReadIndex {
ReadAll = 0,
DontRead = 1,
}
Expand description
Tell gitstatusd weather or not to read the git index
Variants§
ReadAll = 0
default behavior of computing everything
DontRead = 1
Disables computation of anything that requires reading git index
Trait Implementations§
impl Copy for ReadIndex
Auto Trait Implementations§
impl Freeze for ReadIndex
impl RefUnwindSafe for ReadIndex
impl Send for ReadIndex
impl Sync for ReadIndex
impl Unpin for ReadIndex
impl UnwindSafe for ReadIndex
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