pub struct PinPlanView {
pub repo: String,
pub current_commit: String,
pub new_commit: String,
pub pushed_commit_exists: bool,
}Expand description
One pin update entry.
Fields§
§repo: StringRepository name.
current_commit: StringCurrent pinned commit.
new_commit: StringNew pinned commit.
pushed_commit_exists: boolWhether the new commit exists on the upstream remote before pinning.
Trait Implementations§
Source§impl Clone for PinPlanView
impl Clone for PinPlanView
Source§fn clone(&self) -> PinPlanView
fn clone(&self) -> PinPlanView
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 PinPlanView
impl Debug for PinPlanView
impl Eq for PinPlanView
Source§impl PartialEq for PinPlanView
impl PartialEq for PinPlanView
impl StructuralPartialEq for PinPlanView
Auto Trait Implementations§
impl Freeze for PinPlanView
impl RefUnwindSafe for PinPlanView
impl Send for PinPlanView
impl Sync for PinPlanView
impl Unpin for PinPlanView
impl UnsafeUnpin for PinPlanView
impl UnwindSafe for PinPlanView
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