pub struct RecommendationReasonDto {
pub rule_id: String,
pub severity: RecommendationSeverityDto,
pub summary_vi: String,
pub summary_en: String,
pub evidence: RecommendationEvidenceDto,
}Fields§
§rule_id: String§severity: RecommendationSeverityDto§summary_vi: String§summary_en: String§evidence: RecommendationEvidenceDtoTrait Implementations§
Source§impl Clone for RecommendationReasonDto
impl Clone for RecommendationReasonDto
Source§fn clone(&self) -> RecommendationReasonDto
fn clone(&self) -> RecommendationReasonDto
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 RecommendationReasonDto
impl Debug for RecommendationReasonDto
Source§impl<'de> Deserialize<'de> for RecommendationReasonDto
impl<'de> Deserialize<'de> for RecommendationReasonDto
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 From<&RecommendationReason> for RecommendationReasonDto
impl From<&RecommendationReason> for RecommendationReasonDto
Source§fn from(value: &RecommendationReason) -> Self
fn from(value: &RecommendationReason) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RecommendationReasonDto
impl RefUnwindSafe for RecommendationReasonDto
impl Send for RecommendationReasonDto
impl Sync for RecommendationReasonDto
impl Unpin for RecommendationReasonDto
impl UnsafeUnpin for RecommendationReasonDto
impl UnwindSafe for RecommendationReasonDto
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