pub struct CloserState {
pub is_open: bool,
pub is_hovered: bool,
}Expand description
State of the closer when it is drawn.
Fields§
§is_open: boolWether the current directory this closer represents is currently open or closed.
is_hovered: boolWether the pointer is hovering over the closer.
Auto Trait Implementations§
impl Freeze for CloserState
impl RefUnwindSafe for CloserState
impl Send for CloserState
impl Sync for CloserState
impl Unpin for CloserState
impl UnwindSafe for CloserState
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