pub struct KnownMarketplaces {
pub marketplaces: HashMap<String, MarketplaceInfo>,
}Expand description
Registry of known marketplaces.
Fields§
§marketplaces: HashMap<String, MarketplaceInfo>Map of marketplace name to info.
Trait Implementations§
Source§impl Clone for KnownMarketplaces
impl Clone for KnownMarketplaces
Source§fn clone(&self) -> KnownMarketplaces
fn clone(&self) -> KnownMarketplaces
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 moreSource§impl Debug for KnownMarketplaces
impl Debug for KnownMarketplaces
Source§impl Default for KnownMarketplaces
impl Default for KnownMarketplaces
Source§fn default() -> KnownMarketplaces
fn default() -> KnownMarketplaces
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KnownMarketplaces
impl<'de> Deserialize<'de> for KnownMarketplaces
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
Auto Trait Implementations§
impl Freeze for KnownMarketplaces
impl RefUnwindSafe for KnownMarketplaces
impl Send for KnownMarketplaces
impl Sync for KnownMarketplaces
impl Unpin for KnownMarketplaces
impl UnsafeUnpin for KnownMarketplaces
impl UnwindSafe for KnownMarketplaces
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