pub struct FolderSearchSettings {
pub roots: Vec<String>,
pub max_depth: usize,
pub include_hidden: bool,
}Fields§
§roots: Vec<String>§max_depth: usizeTrait Implementations§
Source§impl Clone for FolderSearchSettings
impl Clone for FolderSearchSettings
Source§fn clone(&self) -> FolderSearchSettings
fn clone(&self) -> FolderSearchSettings
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 FolderSearchSettings
impl Debug for FolderSearchSettings
Source§impl Default for FolderSearchSettings
impl Default for FolderSearchSettings
Source§impl<'de> Deserialize<'de> for FolderSearchSettings
impl<'de> Deserialize<'de> for FolderSearchSettings
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
impl Eq for FolderSearchSettings
Source§impl PartialEq for FolderSearchSettings
impl PartialEq for FolderSearchSettings
Source§fn eq(&self, other: &FolderSearchSettings) -> bool
fn eq(&self, other: &FolderSearchSettings) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FolderSearchSettings
Auto Trait Implementations§
impl Freeze for FolderSearchSettings
impl RefUnwindSafe for FolderSearchSettings
impl Send for FolderSearchSettings
impl Sync for FolderSearchSettings
impl Unpin for FolderSearchSettings
impl UnsafeUnpin for FolderSearchSettings
impl UnwindSafe for FolderSearchSettings
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