pub struct PluginsctlGetPluginsForTypeRequest {
pub async_: Option<bool>,
pub group: Option<String>,
pub plugin_type: Option<String>,
pub type_: Option<String>,
}Expand description
PluginsctlGetPluginsForTypeRequest
JSON schema
{
"type": "object",
"properties": {
"_async": {
"description": "Run the command asynchronously. Returns a job id
immediately.",
"type": "boolean"
},
"_group": {
"description": "Assign the request to a custom stats group.",
"type": "string"
},
"pluginType": {
"description": "Filter results by plugin type (e.g. `test`).",
"type": "string"
},
"type": {
"description": "MIME type to match when listing plugins.",
"type": "string"
}
}
}Fields§
§async_: Option<bool>Run the command asynchronously. Returns a job id immediately.
group: Option<String>Assign the request to a custom stats group.
plugin_type: Option<String>Filter results by plugin type (e.g. test).
type_: Option<String>MIME type to match when listing plugins.
Trait Implementations§
Source§impl Clone for PluginsctlGetPluginsForTypeRequest
impl Clone for PluginsctlGetPluginsForTypeRequest
Source§fn clone(&self) -> PluginsctlGetPluginsForTypeRequest
fn clone(&self) -> PluginsctlGetPluginsForTypeRequest
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<'de> Deserialize<'de> for PluginsctlGetPluginsForTypeRequest
impl<'de> Deserialize<'de> for PluginsctlGetPluginsForTypeRequest
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<&PluginsctlGetPluginsForTypeRequest> for PluginsctlGetPluginsForTypeRequest
impl From<&PluginsctlGetPluginsForTypeRequest> for PluginsctlGetPluginsForTypeRequest
Source§fn from(value: &PluginsctlGetPluginsForTypeRequest) -> Self
fn from(value: &PluginsctlGetPluginsForTypeRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PluginsctlGetPluginsForTypeRequest
impl RefUnwindSafe for PluginsctlGetPluginsForTypeRequest
impl Send for PluginsctlGetPluginsForTypeRequest
impl Sync for PluginsctlGetPluginsForTypeRequest
impl Unpin for PluginsctlGetPluginsForTypeRequest
impl UnsafeUnpin for PluginsctlGetPluginsForTypeRequest
impl UnwindSafe for PluginsctlGetPluginsForTypeRequest
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