pub struct OperationsDeleteRequest {
pub async_: Option<bool>,
pub config: Option<String>,
pub filter: Option<String>,
pub fs: Option<String>,
pub group: Option<String>,
}Expand description
OperationsDeleteRequest
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"
},
"fs": {
"description": "Remote name or path whose contents should be
removed.",
"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.
fs: Option<String>Remote name or path whose contents should be removed.
group: Option<String>Assign the request to a custom stats group.
Trait Implementations§
Source§impl Clone for OperationsDeleteRequest
impl Clone for OperationsDeleteRequest
Source§fn clone(&self) -> OperationsDeleteRequest
fn clone(&self) -> OperationsDeleteRequest
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 OperationsDeleteRequest
impl Debug for OperationsDeleteRequest
Source§impl Default for OperationsDeleteRequest
impl Default for OperationsDeleteRequest
Source§impl<'de> Deserialize<'de> for OperationsDeleteRequest
impl<'de> Deserialize<'de> for OperationsDeleteRequest
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<&OperationsDeleteRequest> for OperationsDeleteRequest
impl From<&OperationsDeleteRequest> for OperationsDeleteRequest
Source§fn from(value: &OperationsDeleteRequest) -> Self
fn from(value: &OperationsDeleteRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationsDeleteRequest
impl RefUnwindSafe for OperationsDeleteRequest
impl Send for OperationsDeleteRequest
impl Sync for OperationsDeleteRequest
impl Unpin for OperationsDeleteRequest
impl UnsafeUnpin for OperationsDeleteRequest
impl UnwindSafe for OperationsDeleteRequest
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