pub struct FileBrowserEntry {
pub is_file: bool,
pub name: String,
pub permissions: Option<Value>,
pub access_time: Option<i64>,
pub modify_time: Option<i64>,
pub size: Option<i64>,
pub host: Option<String>,
pub parent_path: Option<String>,
pub success: Option<bool>,
pub update_deleted: bool,
pub set_as_user_output: bool,
pub files: Vec<FileBrowserEntry>,
}Expand description
File/directory entry for file browser results.
Fields§
§is_file: bool§name: String§permissions: Option<Value>§access_time: Option<i64>§modify_time: Option<i64>§size: Option<i64>§host: Option<String>§parent_path: Option<String>§success: Option<bool>§update_deleted: bool§set_as_user_output: bool§files: Vec<FileBrowserEntry>Trait Implementations§
Source§impl Clone for FileBrowserEntry
impl Clone for FileBrowserEntry
Source§fn clone(&self) -> FileBrowserEntry
fn clone(&self) -> FileBrowserEntry
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 FileBrowserEntry
impl Debug for FileBrowserEntry
Source§impl Default for FileBrowserEntry
impl Default for FileBrowserEntry
Source§fn default() -> FileBrowserEntry
fn default() -> FileBrowserEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileBrowserEntry
impl<'de> Deserialize<'de> for FileBrowserEntry
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 PartialEq for FileBrowserEntry
impl PartialEq for FileBrowserEntry
Source§fn eq(&self, other: &FileBrowserEntry) -> bool
fn eq(&self, other: &FileBrowserEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FileBrowserEntry
impl Serialize for FileBrowserEntry
impl StructuralPartialEq for FileBrowserEntry
Auto Trait Implementations§
impl Freeze for FileBrowserEntry
impl RefUnwindSafe for FileBrowserEntry
impl Send for FileBrowserEntry
impl Sync for FileBrowserEntry
impl Unpin for FileBrowserEntry
impl UnsafeUnpin for FileBrowserEntry
impl UnwindSafe for FileBrowserEntry
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