pub struct PluginsctlGetPluginsForTypeResponse {
pub loaded_plugins: HashMap<String, Map<String, Value>>,
pub loaded_test_plugins: HashMap<String, Map<String, Value>>,
}Expand description
PluginsctlGetPluginsForTypeResponse
JSON schema
{
"type": "object",
"required": [
"loadedPlugins",
"loadedTestPlugins"
],
"properties": {
"loadedPlugins": {
"description": "Installed plugins keyed by repository name.",
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": true
}
},
"loadedTestPlugins": {
"description": "Installed test plugins keyed by repository name.",
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": true
}
}
}
}Fields§
§loaded_plugins: HashMap<String, Map<String, Value>>Installed plugins keyed by repository name.
loaded_test_plugins: HashMap<String, Map<String, Value>>Installed test plugins keyed by repository name.
Trait Implementations§
Source§impl Clone for PluginsctlGetPluginsForTypeResponse
impl Clone for PluginsctlGetPluginsForTypeResponse
Source§fn clone(&self) -> PluginsctlGetPluginsForTypeResponse
fn clone(&self) -> PluginsctlGetPluginsForTypeResponse
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<'de> Deserialize<'de> for PluginsctlGetPluginsForTypeResponse
impl<'de> Deserialize<'de> for PluginsctlGetPluginsForTypeResponse
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
Source§impl From<&PluginsctlGetPluginsForTypeResponse> for PluginsctlGetPluginsForTypeResponse
impl From<&PluginsctlGetPluginsForTypeResponse> for PluginsctlGetPluginsForTypeResponse
Source§fn from(value: &PluginsctlGetPluginsForTypeResponse) -> Self
fn from(value: &PluginsctlGetPluginsForTypeResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PluginsctlGetPluginsForTypeResponse
impl RefUnwindSafe for PluginsctlGetPluginsForTypeResponse
impl Send for PluginsctlGetPluginsForTypeResponse
impl Sync for PluginsctlGetPluginsForTypeResponse
impl Unpin for PluginsctlGetPluginsForTypeResponse
impl UnwindSafe for PluginsctlGetPluginsForTypeResponse
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