pub struct TrackPreviousValues {
pub column_filter: Option<Vec<Cow<'static, str>>>,
pub only_when_changed: bool,
}Expand description
Options to include old values in CRUD entries for update statements.
These operations are enabled py passing them to a non-local Table constructor.
Fields§
§column_filter: Option<Vec<Cow<'static, str>>>§only_when_changed: boolImplementations§
Trait Implementations§
Source§impl Debug for TrackPreviousValues
impl Debug for TrackPreviousValues
Auto Trait Implementations§
impl Freeze for TrackPreviousValues
impl RefUnwindSafe for TrackPreviousValues
impl Send for TrackPreviousValues
impl Sync for TrackPreviousValues
impl Unpin for TrackPreviousValues
impl UnwindSafe for TrackPreviousValues
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