pub struct RepoInfo {
pub name: String,
pub relative_path: String,
pub absolute_path: PathBuf,
pub description: Option<String>,
}Expand description
Information about a discovered bare git repository.
Fields§
§name: String§relative_path: String§absolute_path: PathBuf§description: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RepoInfo
impl RefUnwindSafe for RepoInfo
impl Send for RepoInfo
impl Sync for RepoInfo
impl Unpin for RepoInfo
impl UnsafeUnpin for RepoInfo
impl UnwindSafe for RepoInfo
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