pub struct Cli { /* private fields */ }
Expand description
The git-iblame
command line interface.
§Examples
use git_iblame::ui::Cli;
fn main() -> anyhow::Result<()> {
let path = PathBuf::from("path/to/file");
let mut cli: Cli = Cli::new(&path);
cli.run()
}
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cli
impl RefUnwindSafe for Cli
impl Send for Cli
impl Sync for Cli
impl Unpin for Cli
impl UnwindSafe for Cli
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