pub enum CreateResult {
Successful(Address),
Failure,
Revert,
Unknown,
}Expand description
Enum describing the result of create. On success, the data contained is the address of the
newly created contract.
Variants§
Auto Trait Implementations§
impl Freeze for CreateResult
impl RefUnwindSafe for CreateResult
impl Send for CreateResult
impl Sync for CreateResult
impl Unpin for CreateResult
impl UnwindSafe for CreateResult
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