pub struct InspectorFinding {
pub inspector: &'static str,
pub severity: FindingSeverity,
pub reason: String,
}Expand description
Result of an inspector analysis.
Inspector TIDAK membuat keputusan. Mereka hanya melaporkan temuan (finding).
Fields§
§inspector: &'static strName / identifier of the inspector
severity: FindingSeveritySeverity level of the finding
reason: StringHuman-readable reason
Implementations§
Trait Implementations§
Source§impl Clone for InspectorFinding
impl Clone for InspectorFinding
Source§fn clone(&self) -> InspectorFinding
fn clone(&self) -> InspectorFinding
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 InspectorFinding
impl RefUnwindSafe for InspectorFinding
impl Send for InspectorFinding
impl Sync for InspectorFinding
impl Unpin for InspectorFinding
impl UnwindSafe for InspectorFinding
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