pub struct SafetyReport {
pub passed: bool,
pub warnings: Vec<SafetyWarning>,
}Expand description
Aggregated safety check result.
Fields§
§passed: bool§warnings: Vec<SafetyWarning>Implementations§
Source§impl SafetyReport
impl SafetyReport
Trait Implementations§
Source§impl Clone for SafetyReport
impl Clone for SafetyReport
Source§fn clone(&self) -> SafetyReport
fn clone(&self) -> SafetyReport
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 SafetyReport
impl Debug for SafetyReport
Source§impl<'de> Deserialize<'de> for SafetyReport
impl<'de> Deserialize<'de> for SafetyReport
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
Source§impl PartialEq for SafetyReport
impl PartialEq for SafetyReport
Source§impl Serialize for SafetyReport
impl Serialize for SafetyReport
impl Eq for SafetyReport
impl StructuralPartialEq for SafetyReport
Auto Trait Implementations§
impl Freeze for SafetyReport
impl RefUnwindSafe for SafetyReport
impl Send for SafetyReport
impl Sync for SafetyReport
impl Unpin for SafetyReport
impl UnsafeUnpin for SafetyReport
impl UnwindSafe for SafetyReport
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