pub struct SmartContractVerifierResponse {
pub contract_code: Option<String>,
}Expand description
SmartContractVerifierResponse : Response providing the smart contract verifier code.
Fields§
§contract_code: Option<String>Implementations§
Source§impl SmartContractVerifierResponse
impl SmartContractVerifierResponse
Sourcepub fn new(contract_code: Option<String>) -> SmartContractVerifierResponse
pub fn new(contract_code: Option<String>) -> SmartContractVerifierResponse
Response providing the smart contract verifier code.
Trait Implementations§
Source§impl Clone for SmartContractVerifierResponse
impl Clone for SmartContractVerifierResponse
Source§fn clone(&self) -> SmartContractVerifierResponse
fn clone(&self) -> SmartContractVerifierResponse
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 Default for SmartContractVerifierResponse
impl Default for SmartContractVerifierResponse
Source§fn default() -> SmartContractVerifierResponse
fn default() -> SmartContractVerifierResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SmartContractVerifierResponse
impl<'de> Deserialize<'de> for SmartContractVerifierResponse
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
Source§impl PartialEq for SmartContractVerifierResponse
impl PartialEq for SmartContractVerifierResponse
Source§fn eq(&self, other: &SmartContractVerifierResponse) -> bool
fn eq(&self, other: &SmartContractVerifierResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SmartContractVerifierResponse
Auto Trait Implementations§
impl Freeze for SmartContractVerifierResponse
impl RefUnwindSafe for SmartContractVerifierResponse
impl Send for SmartContractVerifierResponse
impl Sync for SmartContractVerifierResponse
impl Unpin for SmartContractVerifierResponse
impl UnwindSafe for SmartContractVerifierResponse
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