pub struct SourceLeakResult {
pub target: String,
pub success: bool,
pub bytes_leaked: usize,
pub leaked_source: String,
pub findings: Vec<SourceLeakFinding>,
}Available on crate feature
react2shell only.Expand description
Source leak attack result.
Fields§
§target: String§success: bool§bytes_leaked: usize§leaked_source: String§findings: Vec<SourceLeakFinding>Trait Implementations§
Source§impl Clone for SourceLeakResult
impl Clone for SourceLeakResult
Source§fn clone(&self) -> SourceLeakResult
fn clone(&self) -> SourceLeakResult
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 SourceLeakResult
impl Debug for SourceLeakResult
Source§impl<'de> Deserialize<'de> for SourceLeakResult
impl<'de> Deserialize<'de> for SourceLeakResult
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 SourceLeakResult
impl RefUnwindSafe for SourceLeakResult
impl Send for SourceLeakResult
impl Sync for SourceLeakResult
impl Unpin for SourceLeakResult
impl UnsafeUnpin for SourceLeakResult
impl UnwindSafe for SourceLeakResult
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