pub struct Tooltip {
pub text: String,
pub x: u32,
pub y: u32,
pub visible: bool,
pub timer: f32,
pub delay: f32,
}Fields§
§text: String§x: u32§y: u32§visible: bool§timer: f32§delay: f32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tooltip
impl RefUnwindSafe for Tooltip
impl Send for Tooltip
impl Sync for Tooltip
impl Unpin for Tooltip
impl UnsafeUnpin for Tooltip
impl UnwindSafe for Tooltip
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