Enum windows_win::raw::file::FileSearchType
source · pub enum FileSearchType {
NameMatch,
DirectoriesOnly,
}
Expand description
File search type
Variants§
NameMatch
Search file by name. Corresponds to FindExSearchNameMatch. Default.
DirectoriesOnly
Ask to search directories only. Corresponds to FindExSearchLimitToDirectories.
Note that this flag may be ignored by OS.
Trait Implementations§
source§impl Default for FileSearchType
impl Default for FileSearchType
source§impl Into<u32> for FileSearchType
impl Into<u32> for FileSearchType
source§fn into(self) -> FINDEX_SEARCH_OPS
fn into(self) -> FINDEX_SEARCH_OPS
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl RefUnwindSafe for FileSearchType
impl Send for FileSearchType
impl Sync for FileSearchType
impl Unpin for FileSearchType
impl UnwindSafe for FileSearchType
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