pub enum ConfigIssue {
Mismatch {
key: String,
expected: String,
actual: String,
},
Absent(String),
}Expand description
A structured issue found during git signing configuration checks.
Variants§
Trait Implementations§
Source§impl Clone for ConfigIssue
impl Clone for ConfigIssue
Source§fn clone(&self) -> ConfigIssue
fn clone(&self) -> ConfigIssue
Returns a duplicate of the value. Read more
1.0.0 · 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 ConfigIssue
impl Debug for ConfigIssue
Source§impl<'de> Deserialize<'de> for ConfigIssue
impl<'de> Deserialize<'de> for ConfigIssue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConfigIssue
impl PartialEq for ConfigIssue
Source§impl Serialize for ConfigIssue
impl Serialize for ConfigIssue
impl StructuralPartialEq for ConfigIssue
Auto Trait Implementations§
impl Freeze for ConfigIssue
impl RefUnwindSafe for ConfigIssue
impl Send for ConfigIssue
impl Sync for ConfigIssue
impl Unpin for ConfigIssue
impl UnsafeUnpin for ConfigIssue
impl UnwindSafe for ConfigIssue
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