pub struct Project {
pub name: String,
pub path: PathBuf,
pub default_branch: String,
pub worktrees: Vec<WorktreeInfo>,
pub config: Option<ProjectConfig>,
pub expanded: bool,
pub missing: bool,
}Fields§
§name: String§path: PathBuf§default_branch: String§worktrees: Vec<WorktreeInfo>§config: Option<ProjectConfig>§expanded: bool§missing: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin for Project
impl UnwindSafe for Project
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