pub struct SimulationEdgeCase {
pub description: String,
pub current_behavior: String,
pub suggested_fix: String,
}Expand description
An edge case found during simulation.
Fields§
§description: StringDescription of the edge case.
current_behavior: StringHow the contract handles it currently.
suggested_fix: StringSuggested improvement.
Trait Implementations§
Source§impl Clone for SimulationEdgeCase
impl Clone for SimulationEdgeCase
Source§fn clone(&self) -> SimulationEdgeCase
fn clone(&self) -> SimulationEdgeCase
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 moreSource§impl Debug for SimulationEdgeCase
impl Debug for SimulationEdgeCase
Source§impl<'de> Deserialize<'de> for SimulationEdgeCase
impl<'de> Deserialize<'de> for SimulationEdgeCase
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 SimulationEdgeCase
impl RefUnwindSafe for SimulationEdgeCase
impl Send for SimulationEdgeCase
impl Sync for SimulationEdgeCase
impl Unpin for SimulationEdgeCase
impl UnsafeUnpin for SimulationEdgeCase
impl UnwindSafe for SimulationEdgeCase
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