pub struct ReportEntry {
pub rule_id: String,
pub name: String,
pub action: String,
pub before: Option<Value>,
pub after: Option<Value>,
pub applied: bool,
pub error: Option<String>,
}Fields§
§rule_id: String§name: String§action: Stringcreate, update, or skipped_remote_only.
before: Option<Value>§after: Option<Value>§applied: bool§error: Option<String>Trait Implementations§
Source§impl Clone for ReportEntry
impl Clone for ReportEntry
Source§fn clone(&self) -> ReportEntry
fn clone(&self) -> ReportEntry
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 ReportEntry
impl Debug for ReportEntry
Auto Trait Implementations§
impl Freeze for ReportEntry
impl RefUnwindSafe for ReportEntry
impl Send for ReportEntry
impl Sync for ReportEntry
impl Unpin for ReportEntry
impl UnsafeUnpin for ReportEntry
impl UnwindSafe for ReportEntry
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