pub struct AnalysisLayer {
pub recommendation: Recommendation,
pub original_recommendation: Recommendation,
pub is_exploring: bool,
pub analysis_type: AnalysisLayerStatus,
pub score: RiskScore,
}Fields§
§recommendation: Recommendation§original_recommendation: Recommendation§is_exploring: bool§analysis_type: AnalysisLayerStatus§score: RiskScoreTrait Implementations§
Source§impl Clone for AnalysisLayer
impl Clone for AnalysisLayer
Source§fn clone(&self) -> AnalysisLayer
fn clone(&self) -> AnalysisLayer
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 AnalysisLayer
impl Debug for AnalysisLayer
Source§impl<'de> Deserialize<'de> for AnalysisLayer
impl<'de> Deserialize<'de> for AnalysisLayer
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 AnalysisLayer
impl PartialEq for AnalysisLayer
Source§impl Serialize for AnalysisLayer
impl Serialize for AnalysisLayer
impl StructuralPartialEq for AnalysisLayer
Auto Trait Implementations§
impl Freeze for AnalysisLayer
impl RefUnwindSafe for AnalysisLayer
impl Send for AnalysisLayer
impl Sync for AnalysisLayer
impl Unpin for AnalysisLayer
impl UnwindSafe for AnalysisLayer
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