pub struct RepairFootprintRow {
pub footprint_id: String,
pub session_id: String,
pub node_id: String,
pub revision_id: String,
pub attempt: i32,
pub affected_files: String,
pub bundle_json: String,
pub diagnosis: String,
pub resolved: bool,
}Expand description
Row type for repair_footprints table
Fields§
§footprint_id: String§session_id: String§node_id: String§revision_id: String§attempt: i32§affected_files: String§bundle_json: String§diagnosis: String§resolved: boolTrait Implementations§
Source§impl Clone for RepairFootprintRow
impl Clone for RepairFootprintRow
Source§fn clone(&self) -> RepairFootprintRow
fn clone(&self) -> RepairFootprintRow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RepairFootprintRow
impl RefUnwindSafe for RepairFootprintRow
impl Send for RepairFootprintRow
impl Sync for RepairFootprintRow
impl Unpin for RepairFootprintRow
impl UnsafeUnpin for RepairFootprintRow
impl UnwindSafe for RepairFootprintRow
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