pub struct QualityIssue {
pub issue_type: String,
pub description: String,
pub severity: Severity,
pub affected_thoughts: Vec<u32>,
}Expand description
Quality issue
Fields§
§issue_type: StringIssue type
description: StringIssue description
severity: SeveritySeverity
affected_thoughts: Vec<u32>Affected thoughts
Trait Implementations§
Source§impl Clone for QualityIssue
impl Clone for QualityIssue
Source§fn clone(&self) -> QualityIssue
fn clone(&self) -> QualityIssue
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 QualityIssue
impl Debug for QualityIssue
Source§impl<'de> Deserialize<'de> for QualityIssue
impl<'de> Deserialize<'de> for QualityIssue
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
Auto Trait Implementations§
impl Freeze for QualityIssue
impl RefUnwindSafe for QualityIssue
impl Send for QualityIssue
impl Sync for QualityIssue
impl Unpin for QualityIssue
impl UnwindSafe for QualityIssue
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