pub struct OptionsLocalRequest {
pub async_: Option<bool>,
pub config: Option<String>,
pub filter: Option<String>,
pub group: Option<String>,
}Expand description
OptionsLocalRequest
JSON schema
{
"type": "object",
"properties": {
"_async": {
"description": "Run the command asynchronously. Returns a job id
immediately.",
"type": "boolean"
},
"_config": {
"description": "JSON encoded config overrides applied for this call
only.",
"type": "string"
},
"_filter": {
"description": "JSON encoded filter overrides applied for this call
only.",
"type": "string"
},
"_group": {
"description": "Assign the request to a custom stats group.",
"type": "string"
}
}
}Fields§
§async_: Option<bool>Run the command asynchronously. Returns a job id immediately.
config: Option<String>JSON encoded config overrides applied for this call only.
filter: Option<String>JSON encoded filter overrides applied for this call only.
group: Option<String>Assign the request to a custom stats group.
Trait Implementations§
Source§impl Clone for OptionsLocalRequest
impl Clone for OptionsLocalRequest
Source§fn clone(&self) -> OptionsLocalRequest
fn clone(&self) -> OptionsLocalRequest
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 OptionsLocalRequest
impl Debug for OptionsLocalRequest
Source§impl Default for OptionsLocalRequest
impl Default for OptionsLocalRequest
Source§impl<'de> Deserialize<'de> for OptionsLocalRequest
impl<'de> Deserialize<'de> for OptionsLocalRequest
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<&OptionsLocalRequest> for OptionsLocalRequest
impl From<&OptionsLocalRequest> for OptionsLocalRequest
Source§fn from(value: &OptionsLocalRequest) -> Self
fn from(value: &OptionsLocalRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OptionsLocalRequest
impl RefUnwindSafe for OptionsLocalRequest
impl Send for OptionsLocalRequest
impl Sync for OptionsLocalRequest
impl Unpin for OptionsLocalRequest
impl UnsafeUnpin for OptionsLocalRequest
impl UnwindSafe for OptionsLocalRequest
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