pub struct RepoWithStatus {
pub name: String,
pub path: String,
pub apps: Vec<(String, String)>,
pub git_status: GitStatus,
pub display_string: String,
}Fields§
§name: String§path: String§apps: Vec<(String, String)>§git_status: GitStatus§display_string: StringTrait Implementations§
Source§impl Clone for RepoWithStatus
impl Clone for RepoWithStatus
Source§fn clone(&self) -> RepoWithStatus
fn clone(&self) -> RepoWithStatus
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 moreAuto Trait Implementations§
impl Freeze for RepoWithStatus
impl RefUnwindSafe for RepoWithStatus
impl Send for RepoWithStatus
impl Sync for RepoWithStatus
impl Unpin for RepoWithStatus
impl UnsafeUnpin for RepoWithStatus
impl UnwindSafe for RepoWithStatus
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