pub struct PinMismatch {
pub name: String,
pub pinned_hash: String,
pub current_hash: String,
pub source: String,
}Expand description
A mismatch between pinned and current configuration.
Fields§
§name: StringName of the tool.
pinned_hash: StringOriginal pinned hash.
current_hash: StringCurrent hash.
source: StringSource of the tool.
Trait Implementations§
Source§impl Clone for PinMismatch
impl Clone for PinMismatch
Source§fn clone(&self) -> PinMismatch
fn clone(&self) -> PinMismatch
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 PinMismatch
impl Debug for PinMismatch
Source§impl<'de> Deserialize<'de> for PinMismatch
impl<'de> Deserialize<'de> for PinMismatch
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
Auto Trait Implementations§
impl Freeze for PinMismatch
impl RefUnwindSafe for PinMismatch
impl Send for PinMismatch
impl Sync for PinMismatch
impl Unpin for PinMismatch
impl UnwindSafe for PinMismatch
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