pub enum SearchPaths {
System,
Custom(Vec<PathBuf>),
}
Expand description
Enum that provides a list of directories to IconLoader
to search for icons in.
Variants§
Implementations§
Source§impl SearchPaths
impl SearchPaths
Trait Implementations§
Source§impl Clone for SearchPaths
impl Clone for SearchPaths
Source§fn clone(&self) -> SearchPaths
fn clone(&self) -> SearchPaths
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 SearchPaths
impl Debug for SearchPaths
Source§impl Default for SearchPaths
impl Default for SearchPaths
Source§fn default() -> SearchPaths
fn default() -> SearchPaths
Returns the “default value” for a type. Read more
Source§impl<I, P> From<I> for SearchPaths
impl<I, P> From<I> for SearchPaths
Source§impl PartialEq for SearchPaths
impl PartialEq for SearchPaths
impl Eq for SearchPaths
impl StructuralPartialEq for SearchPaths
Auto Trait Implementations§
impl Freeze for SearchPaths
impl RefUnwindSafe for SearchPaths
impl Send for SearchPaths
impl Sync for SearchPaths
impl Unpin for SearchPaths
impl UnwindSafe for SearchPaths
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