pub struct AdversarialReviewReport {
pub passed: bool,
pub run_id: Option<String>,
pub checks: Vec<ReviewCheck>,
pub metadata: State,
}Fields§
§passed: bool§run_id: Option<String>§checks: Vec<ReviewCheck>§metadata: StateTrait Implementations§
Source§impl Clone for AdversarialReviewReport
impl Clone for AdversarialReviewReport
Source§fn clone(&self) -> AdversarialReviewReport
fn clone(&self) -> AdversarialReviewReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AdversarialReviewReport
impl RefUnwindSafe for AdversarialReviewReport
impl Send for AdversarialReviewReport
impl Sync for AdversarialReviewReport
impl Unpin for AdversarialReviewReport
impl UnsafeUnpin for AdversarialReviewReport
impl UnwindSafe for AdversarialReviewReport
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