pub struct EthereumYieldClaimInput {
pub caip2: EvmCaip2ChainId,
}Expand description
Input for claiming incentive rewards from vault participation.
JSON schema
{
"title": "EthereumYieldClaimInput",
"description": "Input for claiming incentive rewards from vault
participation.",
"examples": [
{
"caip2": "eip155:8453"
}
],
"type": "object",
"required": [
"caip2"
],
"properties": {
"caip2": {
"$ref": "#/components/schemas/EvmCaip2ChainId"
}
},
"x-stainless-model": "yield.ethereum_yield_claim_input"
}Fields§
§caip2: EvmCaip2ChainIdTrait Implementations§
Source§impl Clone for EthereumYieldClaimInput
impl Clone for EthereumYieldClaimInput
Source§fn clone(&self) -> EthereumYieldClaimInput
fn clone(&self) -> EthereumYieldClaimInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EthereumYieldClaimInput
impl Debug for EthereumYieldClaimInput
Source§impl<'de> Deserialize<'de> for EthereumYieldClaimInput
impl<'de> Deserialize<'de> for EthereumYieldClaimInput
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<&EthereumYieldClaimInput> for EthereumYieldClaimInput
impl From<&EthereumYieldClaimInput> for EthereumYieldClaimInput
Source§fn from(value: &EthereumYieldClaimInput) -> Self
fn from(value: &EthereumYieldClaimInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumYieldClaimInput
impl RefUnwindSafe for EthereumYieldClaimInput
impl Send for EthereumYieldClaimInput
impl Sync for EthereumYieldClaimInput
impl Unpin for EthereumYieldClaimInput
impl UnsafeUnpin for EthereumYieldClaimInput
impl UnwindSafe for EthereumYieldClaimInput
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