pub struct RequestEvmFaucetResponse {
pub transaction_hash: String,
}
Expand description
RequestEvmFaucetResponse
JSON schema
{
"type": "object",
"required": [
"transactionHash"
],
"properties": {
"transactionHash": {
"description": "The hash of the transaction that requested the funds.\n**Note:** In rare cases, when gas conditions are unusually high, the transaction may not confirm, and the system may issue a replacement transaction to complete the faucet request. In these rare cases, the `transactionHash` will be out of sync with the actual faucet transaction that was confirmed onchain.",
"examples": [
"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
],
"type": "string"
}
}
}
Fields§
§transaction_hash: String
The hash of the transaction that requested the funds.
Note:* In rare cases, when gas conditions are unusually high, the transaction may not confirm, and the system may issue a replacement transaction to complete the faucet request. In these rare cases, the transactionHash
will be out of sync with the actual faucet transaction that was confirmed onchain.
Implementations§
Source§impl RequestEvmFaucetResponse
impl RequestEvmFaucetResponse
pub fn builder() -> RequestEvmFaucetResponse
Trait Implementations§
Source§impl Clone for RequestEvmFaucetResponse
impl Clone for RequestEvmFaucetResponse
Source§fn clone(&self) -> RequestEvmFaucetResponse
fn clone(&self) -> RequestEvmFaucetResponse
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 RequestEvmFaucetResponse
impl Debug for RequestEvmFaucetResponse
Source§impl<'de> Deserialize<'de> for RequestEvmFaucetResponse
impl<'de> Deserialize<'de> for RequestEvmFaucetResponse
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 From<&RequestEvmFaucetResponse> for RequestEvmFaucetResponse
impl From<&RequestEvmFaucetResponse> for RequestEvmFaucetResponse
Source§fn from(value: &RequestEvmFaucetResponse) -> Self
fn from(value: &RequestEvmFaucetResponse) -> Self
Converts to this type from the input type.
Source§impl From<RequestEvmFaucetResponse> for RequestEvmFaucetResponse
impl From<RequestEvmFaucetResponse> for RequestEvmFaucetResponse
Source§fn from(value: RequestEvmFaucetResponse) -> Self
fn from(value: RequestEvmFaucetResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for RequestEvmFaucetResponse
impl Serialize for RequestEvmFaucetResponse
Source§impl TryFrom<RequestEvmFaucetResponse> for RequestEvmFaucetResponse
impl TryFrom<RequestEvmFaucetResponse> for RequestEvmFaucetResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: RequestEvmFaucetResponse) -> Result<Self, ConversionError>
fn try_from(value: RequestEvmFaucetResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RequestEvmFaucetResponse
impl RefUnwindSafe for RequestEvmFaucetResponse
impl Send for RequestEvmFaucetResponse
impl Sync for RequestEvmFaucetResponse
impl Unpin for RequestEvmFaucetResponse
impl UnwindSafe for RequestEvmFaucetResponse
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