pub struct AmendOrderParamsBuilder { /* private fields */ }
Implementations§
Source§impl AmendOrderParamsBuilder
impl AmendOrderParamsBuilder
pub fn new(order_quantity: Decimal, token: Token) -> AmendOrderParamsBuilder
pub fn build(&mut self) -> AmendOrderParams
pub fn order_id(&mut self, order_id: String) -> &mut Self
pub fn client_order_id(&mut self, client_order_id: String) -> &mut Self
pub fn display_quantity(&mut self, display_quantity: Decimal) -> &mut Self
pub fn limit_price(&mut self, limit_price: Decimal) -> &mut Self
pub fn limit_price_type(&mut self, limit_price_type: PriceType) -> &mut Self
pub fn post_only(&mut self, post_only: bool) -> &mut Self
pub fn trigger_price(&mut self, trigger_price: Decimal) -> &mut Self
pub fn trigger_price_type(&mut self, trigger_price_type: PriceType) -> &mut Self
pub fn deadline(&mut self, deadline: String) -> &mut Self
Auto Trait Implementations§
impl Freeze for AmendOrderParamsBuilder
impl RefUnwindSafe for AmendOrderParamsBuilder
impl Send for AmendOrderParamsBuilder
impl Sync for AmendOrderParamsBuilder
impl Unpin for AmendOrderParamsBuilder
impl UnwindSafe for AmendOrderParamsBuilder
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