pub enum SparkOutputSelectionStrategy {
LargeFirst,
SmallFirst,
}Expand description
Strategy for selecting outputs in a Spark token transfer.
JSON schema
{
"title": "SparkOutputSelectionStrategy",
"description": "Strategy for selecting outputs in a Spark token
transfer.",
"type": "string",
"enum": [
"LARGE_FIRST",
"SMALL_FIRST"
],
"x-stainless-model": "wallets.spark_output_selection_strategy"
}Variants§
Trait Implementations§
Source§impl Clone for SparkOutputSelectionStrategy
impl Clone for SparkOutputSelectionStrategy
Source§fn clone(&self) -> SparkOutputSelectionStrategy
fn clone(&self) -> SparkOutputSelectionStrategy
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 SparkOutputSelectionStrategy
Source§impl Debug for SparkOutputSelectionStrategy
impl Debug for SparkOutputSelectionStrategy
Source§impl<'de> Deserialize<'de> for SparkOutputSelectionStrategy
impl<'de> Deserialize<'de> for SparkOutputSelectionStrategy
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
impl Eq for SparkOutputSelectionStrategy
Source§impl From<&SparkOutputSelectionStrategy> for SparkOutputSelectionStrategy
impl From<&SparkOutputSelectionStrategy> for SparkOutputSelectionStrategy
Source§fn from(value: &SparkOutputSelectionStrategy) -> Self
fn from(value: &SparkOutputSelectionStrategy) -> Self
Converts to this type from the input type.
Source§impl Hash for SparkOutputSelectionStrategy
impl Hash for SparkOutputSelectionStrategy
Source§impl Ord for SparkOutputSelectionStrategy
impl Ord for SparkOutputSelectionStrategy
Source§fn cmp(&self, other: &SparkOutputSelectionStrategy) -> Ordering
fn cmp(&self, other: &SparkOutputSelectionStrategy) -> 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 SparkOutputSelectionStrategy
impl PartialEq for SparkOutputSelectionStrategy
Source§fn eq(&self, other: &SparkOutputSelectionStrategy) -> bool
fn eq(&self, other: &SparkOutputSelectionStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SparkOutputSelectionStrategy
impl PartialOrd for SparkOutputSelectionStrategy
impl StructuralPartialEq for SparkOutputSelectionStrategy
Source§impl TryFrom<&String> for SparkOutputSelectionStrategy
impl TryFrom<&String> for SparkOutputSelectionStrategy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for SparkOutputSelectionStrategy
impl TryFrom<&str> for SparkOutputSelectionStrategy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for SparkOutputSelectionStrategy
impl TryFrom<String> for SparkOutputSelectionStrategy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for SparkOutputSelectionStrategy
impl RefUnwindSafe for SparkOutputSelectionStrategy
impl Send for SparkOutputSelectionStrategy
impl Sync for SparkOutputSelectionStrategy
impl Unpin for SparkOutputSelectionStrategy
impl UnsafeUnpin for SparkOutputSelectionStrategy
impl UnwindSafe for SparkOutputSelectionStrategy
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