pub struct CloneReport {
pub repo_path: PathBuf,
pub remote_url: String,
pub username: String,
pub email: String,
pub reused_existing_repo: bool,
}Expand description
Outcome of an identity-aware clone operation.
Fields§
§repo_path: PathBufResolved local repository path.
remote_url: StringFinal remote URL after host alias rewriting.
username: StringGit username applied to the repository config.
email: StringGit email applied to the repository config.
reused_existing_repo: boolWhether Gitcore reused an existing checkout instead of cloning anew.
Trait Implementations§
Source§impl Clone for CloneReport
impl Clone for CloneReport
Source§fn clone(&self) -> CloneReport
fn clone(&self) -> CloneReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CloneReport
impl RefUnwindSafe for CloneReport
impl Send for CloneReport
impl Sync for CloneReport
impl Unpin for CloneReport
impl UnsafeUnpin for CloneReport
impl UnwindSafe for CloneReport
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