pub struct CheckReport {
pub id: &'static str,
pub label: &'static str,
pub status: CheckStatus,
pub blocking: bool,
pub message: String,
pub hint: Option<String>,
}Fields§
§id: &'static str§label: &'static str§status: CheckStatus§blocking: bool§message: String§hint: Option<String>Trait Implementations§
Source§impl Clone for CheckReport
impl Clone for CheckReport
Source§fn clone(&self) -> CheckReport
fn clone(&self) -> CheckReport
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 CheckReport
impl Debug for CheckReport
Source§impl PartialEq for CheckReport
impl PartialEq for CheckReport
impl Eq for CheckReport
impl StructuralPartialEq for CheckReport
Auto Trait Implementations§
impl Freeze for CheckReport
impl RefUnwindSafe for CheckReport
impl Send for CheckReport
impl Sync for CheckReport
impl Unpin for CheckReport
impl UnsafeUnpin for CheckReport
impl UnwindSafe for CheckReport
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