pub struct DiscoveredProject {
pub root: PathBuf,
pub name: String,
}Expand description
Result of a successful project discovery.
Fields§
§root: PathBufThe root directory of the discovered project (where .git lives).
name: StringThe project name (directory name of the root).
Trait Implementations§
Source§impl Clone for DiscoveredProject
impl Clone for DiscoveredProject
Source§fn clone(&self) -> DiscoveredProject
fn clone(&self) -> DiscoveredProject
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DiscoveredProject
impl Debug for DiscoveredProject
Source§impl PartialEq for DiscoveredProject
impl PartialEq for DiscoveredProject
impl Eq for DiscoveredProject
impl StructuralPartialEq for DiscoveredProject
Auto Trait Implementations§
impl Freeze for DiscoveredProject
impl RefUnwindSafe for DiscoveredProject
impl Send for DiscoveredProject
impl Sync for DiscoveredProject
impl Unpin for DiscoveredProject
impl UnsafeUnpin for DiscoveredProject
impl UnwindSafe for DiscoveredProject
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