pub struct MergeWarning {
pub kind: MergeWarningKind,
pub path: SecretPath,
}Expand description
Advisory warning emitted by the merge.
Warnings do not fail the merge; they are surfaced through doctor
to nudge the user toward fixing manifest hygiene issues.
Fields§
§kind: MergeWarningKindWhat the warning is about.
path: SecretPathWhich path the warning concerns.
Trait Implementations§
Source§impl Clone for MergeWarning
impl Clone for MergeWarning
Source§fn clone(&self) -> MergeWarning
fn clone(&self) -> MergeWarning
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 MergeWarning
impl Debug for MergeWarning
impl Eq for MergeWarning
Source§impl PartialEq for MergeWarning
impl PartialEq for MergeWarning
Source§fn eq(&self, other: &MergeWarning) -> bool
fn eq(&self, other: &MergeWarning) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MergeWarning
impl Serialize for MergeWarning
impl StructuralPartialEq for MergeWarning
Auto Trait Implementations§
impl Freeze for MergeWarning
impl RefUnwindSafe for MergeWarning
impl Send for MergeWarning
impl Sync for MergeWarning
impl Unpin for MergeWarning
impl UnsafeUnpin for MergeWarning
impl UnwindSafe for MergeWarning
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.