pub struct QuickAccessPath {
pub display_name: String,
pub path: PathBuf,
}
Expand description
Stores the display name and the actual path of a quick access link.
Fields§
§display_name: String
Name of the path that is shown inside the left panel.
path: PathBuf
Absolute or relative path to the folder.
Trait Implementations§
Source§impl Clone for QuickAccessPath
impl Clone for QuickAccessPath
Source§fn clone(&self) -> QuickAccessPath
fn clone(&self) -> QuickAccessPath
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for QuickAccessPath
impl RefUnwindSafe for QuickAccessPath
impl Send for QuickAccessPath
impl Sync for QuickAccessPath
impl Unpin for QuickAccessPath
impl UnwindSafe for QuickAccessPath
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