pub struct AttackPhaseResult {
pub phase: String,
pub success: bool,
pub duration_ms: u64,
pub details: String,
}Available on crate feature
react2shell only.Expand description
Result of a single attack phase.
Fields§
§phase: String§success: bool§duration_ms: u64§details: StringTrait Implementations§
Source§impl Clone for AttackPhaseResult
impl Clone for AttackPhaseResult
Source§fn clone(&self) -> AttackPhaseResult
fn clone(&self) -> AttackPhaseResult
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 AttackPhaseResult
impl Debug for AttackPhaseResult
Source§impl<'de> Deserialize<'de> for AttackPhaseResult
impl<'de> Deserialize<'de> for AttackPhaseResult
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 AttackPhaseResult
impl RefUnwindSafe for AttackPhaseResult
impl Send for AttackPhaseResult
impl Sync for AttackPhaseResult
impl Unpin for AttackPhaseResult
impl UnsafeUnpin for AttackPhaseResult
impl UnwindSafe for AttackPhaseResult
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