pub struct TreeViewResponse {
pub response: Response,
pub selected: Option<PathBuf>,
pub toggled: Option<PathBuf>,
}Expand description
Response from the tree view
Fields§
§response: ResponseBase egui response
selected: Option<PathBuf>Item selected this frame
toggled: Option<PathBuf>Branch expanded/collapsed this frame
Trait Implementations§
Source§impl Clone for TreeViewResponse
impl Clone for TreeViewResponse
Source§fn clone(&self) -> TreeViewResponse
fn clone(&self) -> TreeViewResponse
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 moreAuto Trait Implementations§
impl Freeze for TreeViewResponse
impl !RefUnwindSafe for TreeViewResponse
impl Send for TreeViewResponse
impl Sync for TreeViewResponse
impl Unpin for TreeViewResponse
impl UnsafeUnpin for TreeViewResponse
impl !UnwindSafe for TreeViewResponse
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