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