pub struct OnGuiElemChangedEvent {
pub element: LuaGuiElement,
pub name: &'static str,
pub player_index: u32,
pub tick: u32,
}Expand description
Called when LuaGuiElement element value is changed (related to choose element buttons).
Fields§
§element: LuaGuiElement§name: &'static str§player_index: u32§tick: u32Trait Implementations§
Source§impl Clone for OnGuiElemChangedEvent
impl Clone for OnGuiElemChangedEvent
Source§fn clone(&self) -> OnGuiElemChangedEvent
fn clone(&self) -> OnGuiElemChangedEvent
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 moreimpl Copy for OnGuiElemChangedEvent
Source§impl Debug for OnGuiElemChangedEvent
impl Debug for OnGuiElemChangedEvent
Source§impl Default for OnGuiElemChangedEvent
impl Default for OnGuiElemChangedEvent
Source§fn default() -> OnGuiElemChangedEvent
fn default() -> OnGuiElemChangedEvent
Returns the “default value” for a type. Read more
Source§impl PartialEq for OnGuiElemChangedEvent
impl PartialEq for OnGuiElemChangedEvent
impl StructuralPartialEq for OnGuiElemChangedEvent
Auto Trait Implementations§
impl Freeze for OnGuiElemChangedEvent
impl RefUnwindSafe for OnGuiElemChangedEvent
impl Send for OnGuiElemChangedEvent
impl Sync for OnGuiElemChangedEvent
impl Unpin for OnGuiElemChangedEvent
impl UnsafeUnpin for OnGuiElemChangedEvent
impl UnwindSafe for OnGuiElemChangedEvent
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