pub enum ReentrancyError {
    /// Emitted when the caller is a reentrant.
    NonReentrant: (),
}
Expand description

Error log for when reentrancy has been detected

Variants

NonReentrant: ()

Emitted when the caller is a reentrant.

Trait Implementations

pub fn abi_encode(self, buffer: Buffer) -> Buffer

pub fn abi_decode(refmut buffer: BufferReader) -> Self