pub struct IndexNameInfo {
pub name: String,
pub future_combo_enabled: Option<bool>,
pub option_combo_enabled: Option<bool>,
}Expand description
Index name information with extended details
Represents an index with optional combo trading availability flags.
Returned by get_supported_index_names when extended=true.
Fields§
§name: StringIndex name identifier (e.g., “btc_eth”, “btc_usdc”)
future_combo_enabled: Option<bool>Whether future combo creation is enabled for this index
option_combo_enabled: Option<bool>Whether option combo creation is enabled for this index
Trait Implementations§
Source§impl Clone for IndexNameInfo
impl Clone for IndexNameInfo
Source§fn clone(&self) -> IndexNameInfo
fn clone(&self) -> IndexNameInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 IndexNameInfo
impl Debug for IndexNameInfo
Source§impl<'de> Deserialize<'de> for IndexNameInfo
impl<'de> Deserialize<'de> for IndexNameInfo
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 PartialEq for IndexNameInfo
impl PartialEq for IndexNameInfo
Source§impl Serialize for IndexNameInfo
impl Serialize for IndexNameInfo
impl StructuralPartialEq for IndexNameInfo
Auto Trait Implementations§
impl Freeze for IndexNameInfo
impl RefUnwindSafe for IndexNameInfo
impl Send for IndexNameInfo
impl Sync for IndexNameInfo
impl Unpin for IndexNameInfo
impl UnsafeUnpin for IndexNameInfo
impl UnwindSafe for IndexNameInfo
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