pub struct AlgoParams {
pub strategy: String,
pub params: Vec<TagValue>,
}Expand description
Parameters for an algorithmic order strategy.
Fields§
§strategy: StringThe algorithm strategy name (e.g., “Vwap”, “Twap”)
params: Vec<TagValue>The algorithm parameters as tag-value pairs
Trait Implementations§
Source§impl Clone for AlgoParams
impl Clone for AlgoParams
Source§fn clone(&self) -> AlgoParams
fn clone(&self) -> AlgoParams
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 AlgoParams
impl Debug for AlgoParams
Source§impl Default for AlgoParams
impl Default for AlgoParams
Source§fn default() -> AlgoParams
fn default() -> AlgoParams
Returns the “default value” for a type. Read more
Source§impl From<&str> for AlgoParams
impl From<&str> for AlgoParams
Auto Trait Implementations§
impl Freeze for AlgoParams
impl RefUnwindSafe for AlgoParams
impl Send for AlgoParams
impl Sync for AlgoParams
impl Unpin for AlgoParams
impl UnsafeUnpin for AlgoParams
impl UnwindSafe for AlgoParams
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