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