pub struct FsReadDirectoryResponse {
pub entries: Vec<FsReadDirectoryEntry>,
}Expand description
Directory entries returned by fs/readDirectory.
JSON schema
{
"title": "FsReadDirectoryResponse",
"description": "Directory entries returned by `fs/readDirectory`.",
"type": "object",
"required": [
"entries"
],
"properties": {
"entries": {
"description": "Direct child entries in the requested directory.",
"type": "array",
"items": {
"$ref": "#/definitions/FsReadDirectoryEntry"
}
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}Fields§
§entries: Vec<FsReadDirectoryEntry>Direct child entries in the requested directory.
Trait Implementations§
Source§impl Clone for FsReadDirectoryResponse
impl Clone for FsReadDirectoryResponse
Source§fn clone(&self) -> FsReadDirectoryResponse
fn clone(&self) -> FsReadDirectoryResponse
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 FsReadDirectoryResponse
impl Debug for FsReadDirectoryResponse
Source§impl<'de> Deserialize<'de> for FsReadDirectoryResponse
impl<'de> Deserialize<'de> for FsReadDirectoryResponse
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
Auto Trait Implementations§
impl Freeze for FsReadDirectoryResponse
impl RefUnwindSafe for FsReadDirectoryResponse
impl Send for FsReadDirectoryResponse
impl Sync for FsReadDirectoryResponse
impl Unpin for FsReadDirectoryResponse
impl UnsafeUnpin for FsReadDirectoryResponse
impl UnwindSafe for FsReadDirectoryResponse
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