pub struct AnalyzeReport {Show 15 fields
pub outpost_path: PathBuf,
pub source_path: PathBuf,
pub locked: bool,
pub lock_reason: Option<String>,
pub branch: Option<BranchName>,
pub outpost_dirty: bool,
pub upstream_remote: Probe<UpstreamRemote>,
pub outpost_vs_source: Probe<AheadBehind>,
pub source_vs_upstream: Probe<AheadBehind>,
pub source_vs_upstream_default: Probe<AheadBehind>,
pub upstream_default_branch: Probe<RemoteBranchIdentity>,
pub upstream_branch: Probe<RemoteBranchIdentity>,
pub source_push_hazard: Probe<SourcePushHazard>,
pub safe_delete: BranchDeleteSafety,
pub safe_delete_findings: Vec<BranchCleanupFinding>,
}Fields§
§outpost_path: PathBuf§source_path: PathBuf§locked: bool§lock_reason: Option<String>§branch: Option<BranchName>§outpost_dirty: bool§upstream_remote: Probe<UpstreamRemote>§outpost_vs_source: Probe<AheadBehind>§source_vs_upstream: Probe<AheadBehind>§source_vs_upstream_default: Probe<AheadBehind>§upstream_default_branch: Probe<RemoteBranchIdentity>§upstream_branch: Probe<RemoteBranchIdentity>§source_push_hazard: Probe<SourcePushHazard>§safe_delete: BranchDeleteSafety§safe_delete_findings: Vec<BranchCleanupFinding>Trait Implementations§
Source§impl Clone for AnalyzeReport
impl Clone for AnalyzeReport
Source§fn clone(&self) -> AnalyzeReport
fn clone(&self) -> AnalyzeReport
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 moreSource§impl Debug for AnalyzeReport
impl Debug for AnalyzeReport
impl Eq for AnalyzeReport
Source§impl PartialEq for AnalyzeReport
impl PartialEq for AnalyzeReport
Source§fn eq(&self, other: &AnalyzeReport) -> bool
fn eq(&self, other: &AnalyzeReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnalyzeReport
Auto Trait Implementations§
impl Freeze for AnalyzeReport
impl RefUnwindSafe for AnalyzeReport
impl Send for AnalyzeReport
impl Sync for AnalyzeReport
impl Unpin for AnalyzeReport
impl UnsafeUnpin for AnalyzeReport
impl UnwindSafe for AnalyzeReport
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