pub struct EthereumYieldClaimIdInput {
pub id: String,
}Expand description
Input for fetching a yield reward claim by ID.
JSON schema
{
"title": "EthereumYieldClaimIdInput",
"description": "Input for fetching a yield reward claim by ID.",
"examples": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
],
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"description": "The yield claim transaction ID.",
"type": "string"
}
},
"x-stainless-model": "yield.ethereum_yield_claim_id_input"
}Fields§
§id: StringThe yield claim transaction ID.
Trait Implementations§
Source§impl Clone for EthereumYieldClaimIdInput
impl Clone for EthereumYieldClaimIdInput
Source§fn clone(&self) -> EthereumYieldClaimIdInput
fn clone(&self) -> EthereumYieldClaimIdInput
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 EthereumYieldClaimIdInput
impl Debug for EthereumYieldClaimIdInput
Source§impl<'de> Deserialize<'de> for EthereumYieldClaimIdInput
impl<'de> Deserialize<'de> for EthereumYieldClaimIdInput
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<&EthereumYieldClaimIdInput> for EthereumYieldClaimIdInput
impl From<&EthereumYieldClaimIdInput> for EthereumYieldClaimIdInput
Source§fn from(value: &EthereumYieldClaimIdInput) -> Self
fn from(value: &EthereumYieldClaimIdInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumYieldClaimIdInput
impl RefUnwindSafe for EthereumYieldClaimIdInput
impl Send for EthereumYieldClaimIdInput
impl Sync for EthereumYieldClaimIdInput
impl Unpin for EthereumYieldClaimIdInput
impl UnsafeUnpin for EthereumYieldClaimIdInput
impl UnwindSafe for EthereumYieldClaimIdInput
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