pub struct SimulationDeadlock {
pub description: String,
pub policies_involved: Vec<ContractId>,
pub resolution: String,
}Expand description
A deadlock found during simulation.
Fields§
§description: StringDescription of the deadlock.
policies_involved: Vec<ContractId>Policies involved.
resolution: StringHow to resolve it.
Trait Implementations§
Source§impl Clone for SimulationDeadlock
impl Clone for SimulationDeadlock
Source§fn clone(&self) -> SimulationDeadlock
fn clone(&self) -> SimulationDeadlock
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 SimulationDeadlock
impl Debug for SimulationDeadlock
Source§impl<'de> Deserialize<'de> for SimulationDeadlock
impl<'de> Deserialize<'de> for SimulationDeadlock
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 SimulationDeadlock
impl RefUnwindSafe for SimulationDeadlock
impl Send for SimulationDeadlock
impl Sync for SimulationDeadlock
impl Unpin for SimulationDeadlock
impl UnsafeUnpin for SimulationDeadlock
impl UnwindSafe for SimulationDeadlock
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