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