Struct abstract_std::objects::DexAssetPairing
source · pub struct DexAssetPairing<Asset = AssetEntry>(/* private fields */);
Expand description
The key for an asset pairing Consists of the two assets and the dex name TODO: what if we made keys equal based on the two assets either way?
Implementations§
Trait Implementations§
source§impl<Asset: Clone> Clone for DexAssetPairing<Asset>
impl<Asset: Clone> Clone for DexAssetPairing<Asset>
source§fn clone(&self) -> DexAssetPairing<Asset>
fn clone(&self) -> DexAssetPairing<Asset>
Returns a copy 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<Asset: Debug> Debug for DexAssetPairing<Asset>
impl<Asset: Debug> Debug for DexAssetPairing<Asset>
source§impl<'de, Asset> Deserialize<'de> for DexAssetPairing<Asset>where
Asset: Deserialize<'de>,
impl<'de, Asset> Deserialize<'de> for DexAssetPairing<Asset>where
Asset: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for DexAssetPairing
impl Display for DexAssetPairing
source§impl<Asset: JsonSchema> JsonSchema for DexAssetPairing<Asset>
impl<Asset: JsonSchema> JsonSchema for DexAssetPairing<Asset>
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl KeyDeserialize for &DexAssetPairing
impl KeyDeserialize for &DexAssetPairing
@todo: use existing method for triple tuple
source§impl<Asset: Ord> Ord for DexAssetPairing<Asset>
impl<Asset: Ord> Ord for DexAssetPairing<Asset>
source§fn cmp(&self, other: &DexAssetPairing<Asset>) -> Ordering
fn cmp(&self, other: &DexAssetPairing<Asset>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<Asset: PartialEq> PartialEq for DexAssetPairing<Asset>
impl<Asset: PartialEq> PartialEq for DexAssetPairing<Asset>
source§fn eq(&self, other: &DexAssetPairing<Asset>) -> bool
fn eq(&self, other: &DexAssetPairing<Asset>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<Asset: PartialOrd> PartialOrd for DexAssetPairing<Asset>
impl<Asset: PartialOrd> PartialOrd for DexAssetPairing<Asset>
source§fn partial_cmp(&self, other: &DexAssetPairing<Asset>) -> Option<Ordering>
fn partial_cmp(&self, other: &DexAssetPairing<Asset>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<'a> Prefixer<'a> for &DexAssetPairing
impl<'a> Prefixer<'a> for &DexAssetPairing
source§impl<'a> PrimaryKey<'a> for &DexAssetPairing
impl<'a> PrimaryKey<'a> for &DexAssetPairing
§type Prefix = (&'a AssetEntry, &'a AssetEntry)
type Prefix = (&'a AssetEntry, &'a AssetEntry)
These associated types need to implement
Prefixer
, so that they can be useful arguments
for prefix()
, sub_prefix()
, and their key-deserializable variants.type SubPrefix = &'a AssetEntry
§type Suffix = String
type Suffix = String
These associated types need to implement
KeyDeserialize
, so that they can be returned from
range_de()
and friends.type SuperSuffix = (&'a AssetEntry, String)
fn joined_key(&self) -> Vec<u8>
fn joined_extra_key(&self, key: &[u8]) -> Vec<u8>
source§impl<Asset> Serialize for DexAssetPairing<Asset>where
Asset: Serialize,
impl<Asset> Serialize for DexAssetPairing<Asset>where
Asset: Serialize,
impl<Asset: Eq> Eq for DexAssetPairing<Asset>
impl<Asset> StructuralPartialEq for DexAssetPairing<Asset>
Auto Trait Implementations§
impl<Asset> Freeze for DexAssetPairing<Asset>where
Asset: Freeze,
impl<Asset> RefUnwindSafe for DexAssetPairing<Asset>where
Asset: RefUnwindSafe,
impl<Asset> Send for DexAssetPairing<Asset>where
Asset: Send,
impl<Asset> Sync for DexAssetPairing<Asset>where
Asset: Sync,
impl<Asset> Unpin for DexAssetPairing<Asset>where
Asset: Unpin,
impl<Asset> UnwindSafe for DexAssetPairing<Asset>where
Asset: UnwindSafe,
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> 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