pub struct NormalizeChange {
pub kind: NormalizeChangeKind,
pub finding_id: String,
pub path: String,
pub before: Value,
pub after: Value,
pub safe: bool,
pub description: String,
}Fields§
§kind: NormalizeChangeKind§finding_id: String§path: String§before: Value§after: Value§safe: bool§description: StringTrait Implementations§
Source§impl Clone for NormalizeChange
impl Clone for NormalizeChange
Source§fn clone(&self) -> NormalizeChange
fn clone(&self) -> NormalizeChange
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 NormalizeChange
impl Debug for NormalizeChange
Source§impl<'de> Deserialize<'de> for NormalizeChange
impl<'de> Deserialize<'de> for NormalizeChange
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 NormalizeChange
impl PartialEq for NormalizeChange
Source§fn eq(&self, other: &NormalizeChange) -> bool
fn eq(&self, other: &NormalizeChange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NormalizeChange
impl Serialize for NormalizeChange
impl StructuralPartialEq for NormalizeChange
Auto Trait Implementations§
impl Freeze for NormalizeChange
impl RefUnwindSafe for NormalizeChange
impl Send for NormalizeChange
impl Sync for NormalizeChange
impl Unpin for NormalizeChange
impl UnsafeUnpin for NormalizeChange
impl UnwindSafe for NormalizeChange
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