Struct me3_framework::overlay::style::Interaction
source · [−]pub struct Interaction {
pub resize_grab_radius_side: f32,
pub resize_grab_radius_corner: f32,
pub show_tooltips_only_when_still: bool,
}
Expand description
How and when interaction happens.
Fields
resize_grab_radius_side: f32
Mouse must be this close to the side of a window to resize
resize_grab_radius_corner: f32
Mouse must be this close to the corner of a window to resize
show_tooltips_only_when_still: bool
If false
, tooltips will show up anytime you hover anything, even is mouse is still moving
Implementations
sourceimpl Interaction
impl Interaction
Trait Implementations
sourceimpl Clone for Interaction
impl Clone for Interaction
sourcefn clone(&self) -> Interaction
fn clone(&self) -> Interaction
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for Interaction
impl Debug for Interaction
sourceimpl Default for Interaction
impl Default for Interaction
sourcefn default() -> Interaction
fn default() -> Interaction
Returns the “default value” for a type. Read more
sourceimpl PartialEq<Interaction> for Interaction
impl PartialEq<Interaction> for Interaction
sourcefn eq(&self, other: &Interaction) -> bool
fn eq(&self, other: &Interaction) -> bool
impl StructuralPartialEq for Interaction
Auto Trait Implementations
impl RefUnwindSafe for Interaction
impl Send for Interaction
impl Sync for Interaction
impl Unpin for Interaction
impl UnwindSafe for Interaction
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more