pub struct StaleBaseWarning {
pub base_sha: String,
pub live_base: String,
pub merge_commits_since_base: usize,
}Expand description
Non-blocking merge-time warning for missions drafted from a stale base.
Fields§
§base_sha: String§live_base: String§merge_commits_since_base: usizeTrait Implementations§
Source§impl Clone for StaleBaseWarning
impl Clone for StaleBaseWarning
Source§fn clone(&self) -> StaleBaseWarning
fn clone(&self) -> StaleBaseWarning
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 StaleBaseWarning
impl Debug for StaleBaseWarning
impl Eq for StaleBaseWarning
Source§impl PartialEq for StaleBaseWarning
impl PartialEq for StaleBaseWarning
impl StructuralPartialEq for StaleBaseWarning
Auto Trait Implementations§
impl Freeze for StaleBaseWarning
impl RefUnwindSafe for StaleBaseWarning
impl Send for StaleBaseWarning
impl Sync for StaleBaseWarning
impl Unpin for StaleBaseWarning
impl UnsafeUnpin for StaleBaseWarning
impl UnwindSafe for StaleBaseWarning
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