pub enum EthereumYieldSweepStatus {
Confirmed,
Failed,
Pending,
}Expand description
Status of a yield sweep.
JSON schema
{
"title": "EthereumYieldSweepStatus",
"description": "Status of a yield sweep.",
"type": "string",
"enum": [
"confirmed",
"failed",
"pending"
],
"x-stainless-model": "yield.ethereum_yield_sweep_status"
}Variants§
Trait Implementations§
Source§impl Clone for EthereumYieldSweepStatus
impl Clone for EthereumYieldSweepStatus
Source§fn clone(&self) -> EthereumYieldSweepStatus
fn clone(&self) -> EthereumYieldSweepStatus
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 moreimpl Copy for EthereumYieldSweepStatus
Source§impl Debug for EthereumYieldSweepStatus
impl Debug for EthereumYieldSweepStatus
Source§impl<'de> Deserialize<'de> for EthereumYieldSweepStatus
impl<'de> Deserialize<'de> for EthereumYieldSweepStatus
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 Display for EthereumYieldSweepStatus
impl Display for EthereumYieldSweepStatus
impl Eq for EthereumYieldSweepStatus
Source§impl From<&EthereumYieldSweepStatus> for EthereumYieldSweepStatus
impl From<&EthereumYieldSweepStatus> for EthereumYieldSweepStatus
Source§fn from(value: &EthereumYieldSweepStatus) -> Self
fn from(value: &EthereumYieldSweepStatus) -> Self
Converts to this type from the input type.
Source§impl FromStr for EthereumYieldSweepStatus
impl FromStr for EthereumYieldSweepStatus
Source§impl Hash for EthereumYieldSweepStatus
impl Hash for EthereumYieldSweepStatus
Source§impl Ord for EthereumYieldSweepStatus
impl Ord for EthereumYieldSweepStatus
Source§fn cmp(&self, other: &EthereumYieldSweepStatus) -> Ordering
fn cmp(&self, other: &EthereumYieldSweepStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EthereumYieldSweepStatus
impl PartialEq for EthereumYieldSweepStatus
Source§fn eq(&self, other: &EthereumYieldSweepStatus) -> bool
fn eq(&self, other: &EthereumYieldSweepStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for EthereumYieldSweepStatus
impl PartialOrd for EthereumYieldSweepStatus
Source§impl Serialize for EthereumYieldSweepStatus
impl Serialize for EthereumYieldSweepStatus
impl StructuralPartialEq for EthereumYieldSweepStatus
Source§impl TryFrom<&String> for EthereumYieldSweepStatus
impl TryFrom<&String> for EthereumYieldSweepStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for EthereumYieldSweepStatus
impl TryFrom<&str> for EthereumYieldSweepStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for EthereumYieldSweepStatus
impl TryFrom<String> for EthereumYieldSweepStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for EthereumYieldSweepStatus
impl RefUnwindSafe for EthereumYieldSweepStatus
impl Send for EthereumYieldSweepStatus
impl Sync for EthereumYieldSweepStatus
impl Unpin for EthereumYieldSweepStatus
impl UnsafeUnpin for EthereumYieldSweepStatus
impl UnwindSafe for EthereumYieldSweepStatus
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