pub struct PullOutcomeText {
pub headline: String,
pub detail_lines: Vec<String>,
}Expand description
Unstyled human text derived from a PullOutcome.
Fields§
§headline: StringPrimary success / up-to-date line.
detail_lines: Vec<String>Follow-on detail lines (branch, import stats, changed paths, …).
Trait Implementations§
Source§impl Clone for PullOutcomeText
impl Clone for PullOutcomeText
Source§fn clone(&self) -> PullOutcomeText
fn clone(&self) -> PullOutcomeText
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 PullOutcomeText
impl Debug for PullOutcomeText
impl Eq for PullOutcomeText
Source§impl PartialEq for PullOutcomeText
impl PartialEq for PullOutcomeText
impl StructuralPartialEq for PullOutcomeText
Auto Trait Implementations§
impl Freeze for PullOutcomeText
impl RefUnwindSafe for PullOutcomeText
impl Send for PullOutcomeText
impl Sync for PullOutcomeText
impl Unpin for PullOutcomeText
impl UnsafeUnpin for PullOutcomeText
impl UnwindSafe for PullOutcomeText
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