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