pub struct MountMountResponse {
pub mount_point: String,
}Expand description
MountMountResponse
JSON schema
{
"type": "object",
"required": [
"mountPoint"
],
"properties": {
"mountPoint": {
"description": "Actual local path where the remote was mounted. May
differ from the requested path (e.g. when '*' is used on Windows).",
"type": "string"
}
}
}Fields§
§mount_point: StringActual local path where the remote was mounted. May differ from the requested path (e.g. when ‘*’ is used on Windows).
Trait Implementations§
Source§impl Clone for MountMountResponse
impl Clone for MountMountResponse
Source§fn clone(&self) -> MountMountResponse
fn clone(&self) -> MountMountResponse
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 MountMountResponse
impl Debug for MountMountResponse
Source§impl<'de> Deserialize<'de> for MountMountResponse
impl<'de> Deserialize<'de> for MountMountResponse
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<&MountMountResponse> for MountMountResponse
impl From<&MountMountResponse> for MountMountResponse
Source§fn from(value: &MountMountResponse) -> Self
fn from(value: &MountMountResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MountMountResponse
impl RefUnwindSafe for MountMountResponse
impl Send for MountMountResponse
impl Sync for MountMountResponse
impl Unpin for MountMountResponse
impl UnsafeUnpin for MountMountResponse
impl UnwindSafe for MountMountResponse
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