pub struct StatusReport {
pub outpost_path: PathBuf,
pub source_path: Option<PathBuf>,
pub source_present: bool,
pub remote_name: Option<RemoteName>,
pub current_branch: Option<BranchName>,
pub outpost_dirty: bool,
pub source_ahead_behind_upstream: Option<AheadBehind>,
pub outpost_ahead_behind_source: Option<AheadBehind>,
pub problems: Vec<ConfigProblem>,
}Fields§
§outpost_path: PathBuf§source_path: Option<PathBuf>§source_present: bool§remote_name: Option<RemoteName>§current_branch: Option<BranchName>§outpost_dirty: bool§source_ahead_behind_upstream: Option<AheadBehind>§outpost_ahead_behind_source: Option<AheadBehind>§problems: Vec<ConfigProblem>Trait Implementations§
Source§impl Clone for StatusReport
impl Clone for StatusReport
Source§fn clone(&self) -> StatusReport
fn clone(&self) -> StatusReport
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 StatusReport
impl Debug for StatusReport
impl Eq for StatusReport
Source§impl PartialEq for StatusReport
impl PartialEq for StatusReport
Source§fn eq(&self, other: &StatusReport) -> bool
fn eq(&self, other: &StatusReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatusReport
Auto Trait Implementations§
impl Freeze for StatusReport
impl RefUnwindSafe for StatusReport
impl Send for StatusReport
impl Sync for StatusReport
impl Unpin for StatusReport
impl UnsafeUnpin for StatusReport
impl UnwindSafe for StatusReport
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