pub struct VfsRefreshResponse {
pub result: HashMap<String, String>,
}Expand description
VfsRefreshResponse
JSON schema
{
"type": "object",
"required": [
"result"
],
"properties": {
"result": {
"description": "Map of refreshed directories to status messages.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
}Fields§
§result: HashMap<String, String>Map of refreshed directories to status messages.
Trait Implementations§
Source§impl Clone for VfsRefreshResponse
impl Clone for VfsRefreshResponse
Source§fn clone(&self) -> VfsRefreshResponse
fn clone(&self) -> VfsRefreshResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 VfsRefreshResponse
impl Debug for VfsRefreshResponse
Source§impl<'de> Deserialize<'de> for VfsRefreshResponse
impl<'de> Deserialize<'de> for VfsRefreshResponse
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<&VfsRefreshResponse> for VfsRefreshResponse
impl From<&VfsRefreshResponse> for VfsRefreshResponse
Source§fn from(value: &VfsRefreshResponse) -> Self
fn from(value: &VfsRefreshResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VfsRefreshResponse
impl RefUnwindSafe for VfsRefreshResponse
impl Send for VfsRefreshResponse
impl Sync for VfsRefreshResponse
impl Unpin for VfsRefreshResponse
impl UnwindSafe for VfsRefreshResponse
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