pub struct ReviewCheck {
pub name: String,
pub passed: bool,
pub severity: String,
pub detail: String,
}Fields§
§name: String§passed: bool§severity: String§detail: StringTrait Implementations§
Source§impl Clone for ReviewCheck
impl Clone for ReviewCheck
Source§fn clone(&self) -> ReviewCheck
fn clone(&self) -> ReviewCheck
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 ReviewCheck
impl RefUnwindSafe for ReviewCheck
impl Send for ReviewCheck
impl Sync for ReviewCheck
impl Unpin for ReviewCheck
impl UnsafeUnpin for ReviewCheck
impl UnwindSafe for ReviewCheck
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