pub struct PluginListResponse {
pub featured_plugin_ids: Vec<String>,
pub marketplace_load_errors: Vec<MarketplaceLoadErrorInfo>,
pub marketplaces: Vec<PluginMarketplaceEntry>,
}Expand description
PluginListResponse
JSON schema
{
"title": "PluginListResponse",
"type": "object",
"required": [
"marketplaces"
],
"properties": {
"featuredPluginIds": {
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"marketplaceLoadErrors": {
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/MarketplaceLoadErrorInfo"
}
},
"marketplaces": {
"type": "array",
"items": {
"$ref": "#/definitions/PluginMarketplaceEntry"
}
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§featured_plugin_ids: Vec<String>§marketplace_load_errors: Vec<MarketplaceLoadErrorInfo>§marketplaces: Vec<PluginMarketplaceEntry>Trait Implementations§
Source§impl Clone for PluginListResponse
impl Clone for PluginListResponse
Source§fn clone(&self) -> PluginListResponse
fn clone(&self) -> PluginListResponse
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 PluginListResponse
impl Debug for PluginListResponse
Source§impl<'de> Deserialize<'de> for PluginListResponse
impl<'de> Deserialize<'de> for PluginListResponse
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 PluginListResponse
impl RefUnwindSafe for PluginListResponse
impl Send for PluginListResponse
impl Sync for PluginListResponse
impl Unpin for PluginListResponse
impl UnsafeUnpin for PluginListResponse
impl UnwindSafe for PluginListResponse
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