Enum abstract_core::abstract_token::Logo
source · pub enum Logo {
Url(String),
Embedded(EmbeddedLogo),
}
Expand description
This is used for uploading logo data, or setting it in InstantiateData
Variants§
Url(String)
A reference to an externally hosted logo. Must be a valid HTTP or HTTPS URL.
Embedded(EmbeddedLogo)
Logo content stored on the blockchain. Enforce maximum size of 5KB on all variants
Trait Implementations§
source§impl<'de> Deserialize<'de> for Logo
impl<'de> Deserialize<'de> for Logo
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<Logo, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<Logo, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl JsonSchema for Logo
impl JsonSchema for Logo
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. 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 PartialEq<Logo> for Logo
impl PartialEq<Logo> for Logo
source§impl Serialize for Logo
impl Serialize for Logo
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