Struct abstract_app::objects::AssetEntry
source · pub struct AssetEntry(/* private fields */);Expand description
An unchecked ANS asset entry. This is a string that is formatted as
src_chain>[intermediate_chain>]asset_name
Implementations§
Trait Implementations§
source§impl<Chain> ClientResolve<Chain> for AssetEntrywhere
Chain: CwEnv,
impl<Chain> ClientResolve<Chain> for AssetEntrywhere
Chain: CwEnv,
§type Output = AssetInfoBase<Addr>
type Output = AssetInfoBase<Addr>
Result of resolving an entry.
source§fn resolve(
&self,
ans_host: &AnsHost<Chain>
) -> Result<<AssetEntry as ClientResolve<Chain>>::Output, CwEnvError>
fn resolve( &self, ans_host: &AnsHost<Chain> ) -> Result<<AssetEntry as ClientResolve<Chain>>::Output, CwEnvError>
Resolve an entry into its value.
source§impl Clone for AssetEntry
impl Clone for AssetEntry
source§fn clone(&self) -> AssetEntry
fn clone(&self) -> AssetEntry
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 Debug for AssetEntry
impl Debug for AssetEntry
source§impl Default for AssetEntry
impl Default for AssetEntry
source§fn default() -> AssetEntry
fn default() -> AssetEntry
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AssetEntry
impl<'de> Deserialize<'de> for AssetEntry
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<AssetEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<AssetEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for AssetEntry
impl Display for AssetEntry
source§impl From<&String> for AssetEntry
impl From<&String> for AssetEntry
source§fn from(entry: &String) -> AssetEntry
fn from(entry: &String) -> AssetEntry
Converts to this type from the input type.
source§impl From<&str> for AssetEntry
impl From<&str> for AssetEntry
source§fn from(entry: &str) -> AssetEntry
fn from(entry: &str) -> AssetEntry
Converts to this type from the input type.
source§impl From<String> for AssetEntry
impl From<String> for AssetEntry
source§fn from(entry: String) -> AssetEntry
fn from(entry: String) -> AssetEntry
Converts to this type from the input type.
source§impl JsonSchema for AssetEntry
impl JsonSchema for AssetEntry
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 &AssetEntry
impl KeyDeserialize for &AssetEntry
type Output = AssetEntry
fn from_vec( value: Vec<u8> ) -> Result<<&AssetEntry as KeyDeserialize>::Output, StdError>
fn from_slice(value: &[u8]) -> Result<Self::Output, StdError>
source§impl Ord for AssetEntry
impl Ord for AssetEntry
source§fn cmp(&self, other: &AssetEntry) -> Ordering
fn cmp(&self, other: &AssetEntry) -> 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 PartialEq for AssetEntry
impl PartialEq for AssetEntry
source§fn eq(&self, other: &AssetEntry) -> bool
fn eq(&self, other: &AssetEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for AssetEntry
impl PartialOrd for AssetEntry
source§fn partial_cmp(&self, other: &AssetEntry) -> Option<Ordering>
fn partial_cmp(&self, other: &AssetEntry) -> 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 &AssetEntry
impl<'a> Prefixer<'a> for &AssetEntry
source§impl<'a> PrimaryKey<'a> for &AssetEntry
impl<'a> PrimaryKey<'a> for &AssetEntry
§type Prefix = ()
type Prefix = ()
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 = ()
§type Suffix = &AssetEntry
type Suffix = &AssetEntry
These associated types need to implement
KeyDeserialize, so that they can be returned from
range_de() and friends.type SuperSuffix = &AssetEntry
fn joined_key(&self) -> Vec<u8> ⓘ
fn joined_extra_key(&self, key: &[u8]) -> Vec<u8> ⓘ
source§impl Resolve for AssetEntry
impl Resolve for AssetEntry
§type Output = AssetInfoBase<Addr>
type Output = AssetInfoBase<Addr>
Result of resolving an entry.
source§fn resolve(
&self,
querier: &QuerierWrapper<'_>,
ans_host: &AnsHost
) -> Result<<AssetEntry as Resolve>::Output, AnsHostError>
fn resolve( &self, querier: &QuerierWrapper<'_>, ans_host: &AnsHost ) -> Result<<AssetEntry as Resolve>::Output, AnsHostError>
Resolve an entry into its value.
source§fn is_registered(
&self,
querier: &QuerierWrapper<'_>,
ans_host: &AnsHost
) -> bool
fn is_registered( &self, querier: &QuerierWrapper<'_>, ans_host: &AnsHost ) -> bool
Check if the entry is registered in the ANS.
source§fn assert_registered(
&self,
querier: &QuerierWrapper<'_>,
ans_host: &AnsHost
) -> Result<(), AnsHostError>
fn assert_registered( &self, querier: &QuerierWrapper<'_>, ans_host: &AnsHost ) -> Result<(), AnsHostError>
Assert that a given entry is registered in the ANS.
source§impl Serialize for AssetEntry
impl Serialize for AssetEntry
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
impl Eq for AssetEntry
impl StructuralPartialEq for AssetEntry
Auto Trait Implementations§
impl Freeze for AssetEntry
impl RefUnwindSafe for AssetEntry
impl Send for AssetEntry
impl Sync for AssetEntry
impl Unpin for AssetEntry
impl UnwindSafe for AssetEntry
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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 moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request