pub struct VfsForgetResponse {
pub forgotten: Vec<String>,
}Expand description
VfsForgetResponse
JSON schema
{
"type": "object",
"required": [
"forgotten"
],
"properties": {
"forgotten": {
"description": "Paths that were successfully forgotten.",
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
§forgotten: Vec<String>Paths that were successfully forgotten.
Trait Implementations§
Source§impl Clone for VfsForgetResponse
impl Clone for VfsForgetResponse
Source§fn clone(&self) -> VfsForgetResponse
fn clone(&self) -> VfsForgetResponse
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 VfsForgetResponse
impl Debug for VfsForgetResponse
Source§impl<'de> Deserialize<'de> for VfsForgetResponse
impl<'de> Deserialize<'de> for VfsForgetResponse
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<&VfsForgetResponse> for VfsForgetResponse
impl From<&VfsForgetResponse> for VfsForgetResponse
Source§fn from(value: &VfsForgetResponse) -> Self
fn from(value: &VfsForgetResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VfsForgetResponse
impl RefUnwindSafe for VfsForgetResponse
impl Send for VfsForgetResponse
impl Sync for VfsForgetResponse
impl Unpin for VfsForgetResponse
impl UnwindSafe for VfsForgetResponse
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