Struct DecreasePosition

Source
pub struct DecreasePosition<P: Position<DECIMALS>, const DECIMALS: u8> { /* private fields */ }
Expand description

Decrease the position.

Implementations§

Source§

impl<const DECIMALS: u8, P: PositionMut<DECIMALS>> DecreasePosition<P, DECIMALS>
where P::Market: PerpMarketMut<DECIMALS, Num = P::Num, Signed = P::Signed>,

Source

pub fn try_new( position: P, prices: Prices<P::Num>, size_delta_usd: P::Num, acceptable_price: Option<P::Num>, collateral_withdrawal_amount: P::Num, flags: DecreasePositionFlags, ) -> Result<Self>

Create a new action to decrease the given position.

Source

pub fn set_swap(self, kind: DecreasePositionSwapType) -> Self

Set the swap type.

Source

pub fn is_full_close(&self) -> bool

Whether the action is a full close.

Trait Implementations§

Source§

impl<const DECIMALS: u8, P: PositionMut<DECIMALS>> MarketAction for DecreasePosition<P, DECIMALS>
where P::Market: PerpMarketMut<DECIMALS, Num = P::Num, Signed = P::Signed>,

Source§

type Report = Box<DecreasePositionReport<<P as PositionState<DECIMALS>>::Num, <P as PositionState<DECIMALS>>::Signed>>

The type of the execution report of the action.
Source§

fn execute(self) -> Result<Self::Report>

Execute.

Auto Trait Implementations§

§

impl<P, const DECIMALS: u8> Freeze for DecreasePosition<P, DECIMALS>
where P: Freeze, <P as PositionState<DECIMALS>>::Num: Freeze,

§

impl<P, const DECIMALS: u8> RefUnwindSafe for DecreasePosition<P, DECIMALS>
where P: RefUnwindSafe, <P as PositionState<DECIMALS>>::Num: RefUnwindSafe,

§

impl<P, const DECIMALS: u8> Send for DecreasePosition<P, DECIMALS>
where P: Send, <P as PositionState<DECIMALS>>::Num: Send,

§

impl<P, const DECIMALS: u8> Sync for DecreasePosition<P, DECIMALS>
where P: Sync, <P as PositionState<DECIMALS>>::Num: Sync,

§

impl<P, const DECIMALS: u8> Unpin for DecreasePosition<P, DECIMALS>
where P: Unpin, <P as PositionState<DECIMALS>>::Num: Unpin,

§

impl<P, const DECIMALS: u8> UnwindSafe for DecreasePosition<P, DECIMALS>
where P: UnwindSafe, <P as PositionState<DECIMALS>>::Num: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V