pub struct RouteFilter { /* private fields */ }Expand description
Liquidity a request excludes from a route.
The pools, protocol systems and tokens it names are excluded from every route. Nothing is
excluded unless the request names it. Re-exported from fynd-rpc-types for wire
compatibility.
Liquidity a request excludes from a route.
Every field is optional. The pools, protocol systems and tokens it names are excluded from every route.
Implementations§
Source§impl RouteFilter
impl RouteFilter
Sourcepub fn with_excluded_pools(
self,
pools: impl IntoIterator<Item = String>,
) -> RouteFilter
pub fn with_excluded_pools( self, pools: impl IntoIterator<Item = String>, ) -> RouteFilter
Excludes these pools, by component id.
Sourcepub fn with_excluded_protocols(
self,
protocols: impl IntoIterator<Item = String>,
) -> RouteFilter
pub fn with_excluded_protocols( self, protocols: impl IntoIterator<Item = String>, ) -> RouteFilter
Excludes every pool of these protocol systems.
Sourcepub fn with_excluded_tokens(
self,
tokens: impl IntoIterator<Item = Bytes>,
) -> RouteFilter
pub fn with_excluded_tokens( self, tokens: impl IntoIterator<Item = Bytes>, ) -> RouteFilter
Excludes routes that pass through these tokens.
Sourcepub fn excluded_pools(&self) -> &[String]
pub fn excluded_pools(&self) -> &[String]
The pools excluded, by component id.
Sourcepub fn excluded_protocols(&self) -> &[String]
pub fn excluded_protocols(&self) -> &[String]
The protocol systems excluded.
Sourcepub fn excluded_tokens(&self) -> &[Bytes]
pub fn excluded_tokens(&self) -> &[Bytes]
The tokens excluded as intermediates.
Trait Implementations§
Source§impl Clone for RouteFilter
impl Clone for RouteFilter
Source§fn clone(&self) -> RouteFilter
fn clone(&self) -> RouteFilter
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 RouteFilter
impl Debug for RouteFilter
Source§impl Default for RouteFilter
impl Default for RouteFilter
Source§fn default() -> RouteFilter
fn default() -> RouteFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RouteFilter
impl<'de> Deserialize<'de> for RouteFilter
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RouteFilter, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RouteFilter, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for RouteFilter
impl Serialize for RouteFilter
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for RouteFilter
impl RefUnwindSafe for RouteFilter
impl Send for RouteFilter
impl Sync for RouteFilter
impl Unpin for RouteFilter
impl UnsafeUnpin for RouteFilter
impl UnwindSafe for RouteFilter
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
impl<'de, T> BorrowedRpcObject<'de> for T
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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