pub struct ConfigSetpathRequest {
pub async_: Option<bool>,
pub group: Option<String>,
pub path: Option<String>,
}Expand description
ConfigSetpathRequest
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"
},
"path": {
"description": "Absolute path to the `rclone.conf` file that rclone
should use.",
"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.
path: Option<String>Absolute path to the rclone.conf file that rclone should use.
Trait Implementations§
Source§impl Clone for ConfigSetpathRequest
impl Clone for ConfigSetpathRequest
Source§fn clone(&self) -> ConfigSetpathRequest
fn clone(&self) -> ConfigSetpathRequest
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 ConfigSetpathRequest
impl Debug for ConfigSetpathRequest
Source§impl Default for ConfigSetpathRequest
impl Default for ConfigSetpathRequest
Source§impl<'de> Deserialize<'de> for ConfigSetpathRequest
impl<'de> Deserialize<'de> for ConfigSetpathRequest
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<&ConfigSetpathRequest> for ConfigSetpathRequest
impl From<&ConfigSetpathRequest> for ConfigSetpathRequest
Source§fn from(value: &ConfigSetpathRequest) -> Self
fn from(value: &ConfigSetpathRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigSetpathRequest
impl RefUnwindSafe for ConfigSetpathRequest
impl Send for ConfigSetpathRequest
impl Sync for ConfigSetpathRequest
impl Unpin for ConfigSetpathRequest
impl UnsafeUnpin for ConfigSetpathRequest
impl UnwindSafe for ConfigSetpathRequest
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