pub struct ChangeRepresentation {
pub actions: Vec<Action>,
pub before: HashMap<String, Value>,
pub after: HashMap<String, Value>,
pub after_unknown: HashMap<String, Value>,
pub before_sensitive: HashMap<String, Value>,
pub after_sensitive: HashMap<String, Value>,
pub replace_paths: Option<Vec<Vec<String>>>,
}
Fields§
§actions: Vec<Action>
§before: HashMap<String, Value>
§after: HashMap<String, Value>
§after_unknown: HashMap<String, Value>
§before_sensitive: HashMap<String, Value>
§after_sensitive: HashMap<String, Value>
§replace_paths: Option<Vec<Vec<String>>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChangeRepresentation
impl<'de> Deserialize<'de> for ChangeRepresentation
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 ChangeRepresentation
impl RefUnwindSafe for ChangeRepresentation
impl Send for ChangeRepresentation
impl Sync for ChangeRepresentation
impl Unpin for ChangeRepresentation
impl UnwindSafe for ChangeRepresentation
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