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