pub struct PinPlanEntry {
pub repo: String,
pub current_commit: String,
pub new_commit: String,
pub pushed_commit_exists: bool,
}Expand description
Planned repos.toml pin update.
Fields§
§repo: StringRepository name.
current_commit: StringCurrent pinned commit.
new_commit: StringNew commit to pin.
pushed_commit_exists: boolWhether the new commit exists on the upstream remote.
Trait Implementations§
Source§impl Clone for PinPlanEntry
impl Clone for PinPlanEntry
Source§fn clone(&self) -> PinPlanEntry
fn clone(&self) -> PinPlanEntry
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 PinPlanEntry
impl Debug for PinPlanEntry
impl Eq for PinPlanEntry
Source§impl PartialEq for PinPlanEntry
impl PartialEq for PinPlanEntry
Source§fn eq(&self, other: &PinPlanEntry) -> bool
fn eq(&self, other: &PinPlanEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PinPlanEntry
Auto Trait Implementations§
impl Freeze for PinPlanEntry
impl RefUnwindSafe for PinPlanEntry
impl Send for PinPlanEntry
impl Sync for PinPlanEntry
impl Unpin for PinPlanEntry
impl UnsafeUnpin for PinPlanEntry
impl UnwindSafe for PinPlanEntry
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