pub struct SkippedEntity {
pub entity: String,
pub reason: String,
pub confidence_of_safety: f64,
}Expand description
An entity explicitly decided NOT to test, with reasoning.
Fields§
§entity: StringThe entity we decided not to test
reason: StringWhy we decided not to test it
confidence_of_safety: f64How confident we are that skipping is safe
Trait Implementations§
Source§impl Clone for SkippedEntity
impl Clone for SkippedEntity
Source§fn clone(&self) -> SkippedEntity
fn clone(&self) -> SkippedEntity
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 moreSource§impl Debug for SkippedEntity
impl Debug for SkippedEntity
Source§impl<'de> Deserialize<'de> for SkippedEntity
impl<'de> Deserialize<'de> for SkippedEntity
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 SkippedEntity
impl RefUnwindSafe for SkippedEntity
impl Send for SkippedEntity
impl Sync for SkippedEntity
impl Unpin for SkippedEntity
impl UnsafeUnpin for SkippedEntity
impl UnwindSafe for SkippedEntity
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