pub struct PluginsctlListPluginsResponse {
pub loaded_plugins: Vec<Map<String, Value>>,
pub test_plugins: Vec<Map<String, Value>>,
}Expand description
PluginsctlListPluginsResponse
JSON schema
{
"type": "object",
"required": [
"loadedPlugins",
"testPlugins"
],
"properties": {
"loadedPlugins": {
"description": "Metadata entries for installed plugins.",
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"testPlugins": {
"description": "Metadata entries for installed test plugins.",
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
}
}
}Fields§
§loaded_plugins: Vec<Map<String, Value>>Metadata entries for installed plugins.
test_plugins: Vec<Map<String, Value>>Metadata entries for installed test plugins.
Trait Implementations§
Source§impl Clone for PluginsctlListPluginsResponse
impl Clone for PluginsctlListPluginsResponse
Source§fn clone(&self) -> PluginsctlListPluginsResponse
fn clone(&self) -> PluginsctlListPluginsResponse
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 PluginsctlListPluginsResponse
impl<'de> Deserialize<'de> for PluginsctlListPluginsResponse
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<&PluginsctlListPluginsResponse> for PluginsctlListPluginsResponse
impl From<&PluginsctlListPluginsResponse> for PluginsctlListPluginsResponse
Source§fn from(value: &PluginsctlListPluginsResponse) -> Self
fn from(value: &PluginsctlListPluginsResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PluginsctlListPluginsResponse
impl RefUnwindSafe for PluginsctlListPluginsResponse
impl Send for PluginsctlListPluginsResponse
impl Sync for PluginsctlListPluginsResponse
impl Unpin for PluginsctlListPluginsResponse
impl UnwindSafe for PluginsctlListPluginsResponse
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