pub struct FilerState {
pub current_path: String,
pub folders: Vec<String>,
pub files: Vec<FileMetadata>,
pub selected_folder: usize,
pub selected_file: usize,
pub scroll_folder: usize,
pub scroll_file: usize,
pub active_pane: usize,
}Fields§
§current_path: String§folders: Vec<String>§files: Vec<FileMetadata>§selected_folder: usize§selected_file: usize§scroll_folder: usize§scroll_file: usize§active_pane: usizeImplementations§
Trait Implementations§
Source§impl Clone for FilerState
impl Clone for FilerState
Source§fn clone(&self) -> FilerState
fn clone(&self) -> FilerState
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 moreAuto Trait Implementations§
impl Freeze for FilerState
impl RefUnwindSafe for FilerState
impl Send for FilerState
impl Sync for FilerState
impl Unpin for FilerState
impl UnsafeUnpin for FilerState
impl UnwindSafe for FilerState
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