pub struct RceResult {
pub target: String,
pub success: bool,
pub poc_file_created: bool,
pub command_outputs: Vec<RceCommandOutput>,
}Available on crate feature
react2shell only.Expand description
RCE execution result.
Fields§
§target: String§success: bool§poc_file_created: bool§command_outputs: Vec<RceCommandOutput>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RceResult
impl<'de> Deserialize<'de> for RceResult
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 RceResult
impl RefUnwindSafe for RceResult
impl Send for RceResult
impl Sync for RceResult
impl Unpin for RceResult
impl UnsafeUnpin for RceResult
impl UnwindSafe for RceResult
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