pub struct SecurityRiskAssessment {
pub risk_level: SecurityRiskLevel,
pub risk_type: SecurityRiskType,
pub immediate_action: SecurityAction,
pub escalation_required: bool,
pub compliance_impact: ComplianceImpact,
}Expand description
安全风险评估
Fields§
§risk_level: SecurityRiskLevel风险级别
risk_type: SecurityRiskType风险类型
immediate_action: SecurityAction建议的立即行动
escalation_required: bool是否需要升级处理
compliance_impact: ComplianceImpact合规性影响
Trait Implementations§
Source§impl Clone for SecurityRiskAssessment
impl Clone for SecurityRiskAssessment
Source§fn clone(&self) -> SecurityRiskAssessment
fn clone(&self) -> SecurityRiskAssessment
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 SecurityRiskAssessment
impl Debug for SecurityRiskAssessment
Source§impl Serialize for SecurityRiskAssessment
impl Serialize for SecurityRiskAssessment
impl Copy for SecurityRiskAssessment
Auto Trait Implementations§
impl Freeze for SecurityRiskAssessment
impl RefUnwindSafe for SecurityRiskAssessment
impl Send for SecurityRiskAssessment
impl Sync for SecurityRiskAssessment
impl Unpin for SecurityRiskAssessment
impl UnsafeUnpin for SecurityRiskAssessment
impl UnwindSafe for SecurityRiskAssessment
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