pub struct ReportVerdict {
pub status: ReportStatus,
pub counts: ReportCounts,
pub reasons: Vec<String>,
}Fields§
§status: ReportStatus§counts: ReportCounts§reasons: Vec<String>Trait Implementations§
Source§impl Clone for ReportVerdict
impl Clone for ReportVerdict
Source§fn clone(&self) -> ReportVerdict
fn clone(&self) -> ReportVerdict
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 ReportVerdict
impl Debug for ReportVerdict
Source§impl<'de> Deserialize<'de> for ReportVerdict
impl<'de> Deserialize<'de> for ReportVerdict
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 ReportVerdict
impl RefUnwindSafe for ReportVerdict
impl Send for ReportVerdict
impl Sync for ReportVerdict
impl Unpin for ReportVerdict
impl UnsafeUnpin for ReportVerdict
impl UnwindSafe for ReportVerdict
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