pub struct EthereumEarnPositionQuery {
pub vault_id: String,
}Expand description
Query parameters for fetching an earn vault position.
JSON schema
{
"title": "EthereumEarnPositionQuery",
"description": "Query parameters for fetching an earn vault position.",
"examples": [
{
"vault_id": "cm7oxq1el000e11o8iwp7d0d0"
}
],
"type": "object",
"required": [
"vault_id"
],
"properties": {
"vault_id": {
"description": "The vault ID to get position for.",
"type": "string"
}
},
"x-stainless-model": "wallet_actions.ethereum_earn_position_query"
}Fields§
§vault_id: StringThe vault ID to get position for.
Trait Implementations§
Source§impl Clone for EthereumEarnPositionQuery
impl Clone for EthereumEarnPositionQuery
Source§fn clone(&self) -> EthereumEarnPositionQuery
fn clone(&self) -> EthereumEarnPositionQuery
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 EthereumEarnPositionQuery
impl Debug for EthereumEarnPositionQuery
Source§impl<'de> Deserialize<'de> for EthereumEarnPositionQuery
impl<'de> Deserialize<'de> for EthereumEarnPositionQuery
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<&EthereumEarnPositionQuery> for EthereumEarnPositionQuery
impl From<&EthereumEarnPositionQuery> for EthereumEarnPositionQuery
Source§fn from(value: &EthereumEarnPositionQuery) -> Self
fn from(value: &EthereumEarnPositionQuery) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumEarnPositionQuery
impl RefUnwindSafe for EthereumEarnPositionQuery
impl Send for EthereumEarnPositionQuery
impl Sync for EthereumEarnPositionQuery
impl Unpin for EthereumEarnPositionQuery
impl UnsafeUnpin for EthereumEarnPositionQuery
impl UnwindSafe for EthereumEarnPositionQuery
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