pub struct RiskAssessmentInfo {
pub overall_risk_level: String,
pub risk_factors: Vec<String>,
pub mitigation_strategies: Vec<String>,
pub deployment_readiness: String,
pub rollback_plan: String,
pub monitoring_requirements: Vec<String>,
pub performance_impact_prediction: f64,
pub stability_confidence: f64,
pub business_impact_assessment: String,
pub rollback_difficulty: String,
}
Fields§
§overall_risk_level: String
§risk_factors: Vec<String>
§mitigation_strategies: Vec<String>
§deployment_readiness: String
§rollback_plan: String
§monitoring_requirements: Vec<String>
§performance_impact_prediction: f64
§stability_confidence: f64
§business_impact_assessment: String
§rollback_difficulty: String
Trait Implementations§
Source§impl Clone for RiskAssessmentInfo
impl Clone for RiskAssessmentInfo
Source§fn clone(&self) -> RiskAssessmentInfo
fn clone(&self) -> RiskAssessmentInfo
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 moreSource§impl Debug for RiskAssessmentInfo
impl Debug for RiskAssessmentInfo
Source§impl PartialEq for RiskAssessmentInfo
impl PartialEq for RiskAssessmentInfo
Source§impl Serialize for RiskAssessmentInfo
impl Serialize for RiskAssessmentInfo
impl StructuralPartialEq for RiskAssessmentInfo
Auto Trait Implementations§
impl Freeze for RiskAssessmentInfo
impl RefUnwindSafe for RiskAssessmentInfo
impl Send for RiskAssessmentInfo
impl Sync for RiskAssessmentInfo
impl Unpin for RiskAssessmentInfo
impl UnwindSafe for RiskAssessmentInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more