pub enum VerificationResult {
Success,
AlreadyVerified,
}
Expand description
Enum containing different verification outcomes that result in the contract being subsequently verified on the target block-explorer Note that failure / errors are accounted for by wrapping this enum in a standard Result
Variants§
Success
Indicates successful verification of previously unverified contract
AlreadyVerified
Indicates that the given contract had been verified already
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerificationResult
impl RefUnwindSafe for VerificationResult
impl Send for VerificationResult
impl Sync for VerificationResult
impl Unpin for VerificationResult
impl UnwindSafe for VerificationResult
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