pub struct ConstantOption {
pub id: String,
pub label: String,
pub description: Option<String>,
pub value: String,
pub metadata: HashMap<String, Value>,
}Expand description
A single option within a constant definition Used to define selectable values like AMM configs or well-known tokens
Fields§
§id: StringUnique identifier for this option (e.g., “standard”, “sol”, “usdc”)
label: StringHuman-readable label shown in UI (e.g., “Standard (25 bps)”, “SOL (Wrapped)”)
description: Option<String>Description explaining when to use this option
value: StringThe actual value (typically a pubkey string)
metadata: HashMap<String, Value>Additional metadata for context (e.g., decimals, tick_spacing, fee rates)
Trait Implementations§
Source§impl Clone for ConstantOption
impl Clone for ConstantOption
Source§fn clone(&self) -> ConstantOption
fn clone(&self) -> ConstantOption
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 ConstantOption
impl Debug for ConstantOption
Source§impl<'de> Deserialize<'de> for ConstantOption
impl<'de> Deserialize<'de> for ConstantOption
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<YamlConstantOption> for ConstantOption
impl From<YamlConstantOption> for ConstantOption
Source§fn from(yaml: YamlConstantOption) -> Self
fn from(yaml: YamlConstantOption) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ConstantOption
impl PartialEq for ConstantOption
Source§impl Serialize for ConstantOption
impl Serialize for ConstantOption
impl StructuralPartialEq for ConstantOption
Auto Trait Implementations§
impl Freeze for ConstantOption
impl RefUnwindSafe for ConstantOption
impl Send for ConstantOption
impl Sync for ConstantOption
impl Unpin for ConstantOption
impl UnsafeUnpin for ConstantOption
impl UnwindSafe for ConstantOption
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more