pub enum Note {
Informative(&'static str),
Deviation(&'static str),
}
Expand description
A note attached to a key.
Variants§
Informative(&'static str)
A piece of information related to a key to help the user.
Deviation(&'static str)
This key works differently than is described by git, explaining the deviation further.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
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