pub struct StrippedItem {
pub category: String,
pub reason: String,
}Expand description
An item that was stripped from tool input during minimization.
Fields§
§category: StringWhat category of content was stripped.
reason: StringThe pattern or reason that triggered the strip.
Trait Implementations§
Source§impl Clone for StrippedItem
impl Clone for StrippedItem
Source§fn clone(&self) -> StrippedItem
fn clone(&self) -> StrippedItem
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 moreAuto Trait Implementations§
impl Freeze for StrippedItem
impl RefUnwindSafe for StrippedItem
impl Send for StrippedItem
impl Sync for StrippedItem
impl Unpin for StrippedItem
impl UnsafeUnpin for StrippedItem
impl UnwindSafe for StrippedItem
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