pub struct StopLimitGtd {
pub base_size: String,
pub limit_price: String,
pub stop_price: String,
pub end_time: String,
pub stop_direction: StopDirection,
}Expand description
Stop-limit GTD order configuration.
Fields§
§base_size: StringSize in base currency.
limit_price: StringLimit price.
stop_price: StringStop price.
end_time: StringExpiration time (ISO 8601).
stop_direction: StopDirectionStop direction.
Trait Implementations§
Source§impl Clone for StopLimitGtd
impl Clone for StopLimitGtd
Source§fn clone(&self) -> StopLimitGtd
fn clone(&self) -> StopLimitGtd
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 StopLimitGtd
impl Debug for StopLimitGtd
Auto Trait Implementations§
impl Freeze for StopLimitGtd
impl RefUnwindSafe for StopLimitGtd
impl Send for StopLimitGtd
impl Sync for StopLimitGtd
impl Unpin for StopLimitGtd
impl UnwindSafe for StopLimitGtd
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