pub struct EncodingContext {
pub receiver: Bytes,
pub exact_out: bool,
pub router_address: Option<Bytes>,
pub group_token_in: Bytes,
pub group_token_out: Bytes,
pub transfer_type: TransferType,
pub historical_trade: bool,
}Expand description
Represents necessary attributes for encoding an order.
§Fields
receiver: Address of the receiver of the out token after the swaps are completed.exact_out: true if the solution is a buy order, false if it is a sell order.router_address: Address of the router contract to be used for the swaps. Zero address if solution does not require router address.group_token_in: Token to be used as the input for the group swap.group_token_out: Token to be used as the output for the group swap.transfer: Type of transfer to be performed. SeeTransferTypefor more details.historical_trade: Whether the swap is to be done in the current block or in an historical one. This is relevant for checking token approvals in some protocols (like Balancer v2).
Fields§
§receiver: Bytes§exact_out: bool§router_address: Option<Bytes>§group_token_in: Bytes§group_token_out: Bytes§transfer_type: TransferType§historical_trade: boolTrait Implementations§
Source§impl Clone for EncodingContext
impl Clone for EncodingContext
Source§fn clone(&self) -> EncodingContext
fn clone(&self) -> EncodingContext
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 moreAuto Trait Implementations§
impl !Freeze for EncodingContext
impl RefUnwindSafe for EncodingContext
impl Send for EncodingContext
impl Sync for EncodingContext
impl Unpin for EncodingContext
impl UnwindSafe for EncodingContext
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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