pub struct AutomationEvent(/* private fields */);Implementations§
Source§impl AutomationEvent
impl AutomationEvent
Sourcepub unsafe fn unwrap(self) -> AutomationEvent
pub unsafe fn unwrap(self) -> AutomationEvent
Take the raw ffi type. Must manually free memory by calling the proper unload function
Source§impl AutomationEvent
impl AutomationEvent
Sourcepub fn to_raw(self) -> AutomationEvent
pub fn to_raw(self) -> AutomationEvent
returns the unwrapped raylib-sys object
Sourcepub unsafe fn from_raw(raw: AutomationEvent) -> AutomationEvent
pub unsafe fn from_raw(raw: AutomationEvent) -> AutomationEvent
converts raylib-sys object to a “safe” version. Make sure to call this function from the thread the resource was created.
Trait Implementations§
Source§impl Debug for AutomationEvent
impl Debug for AutomationEvent
Auto Trait Implementations§
impl Freeze for AutomationEvent
impl RefUnwindSafe for AutomationEvent
impl Send for AutomationEvent
impl Sync for AutomationEvent
impl Unpin for AutomationEvent
impl UnsafeUnpin for AutomationEvent
impl UnwindSafe for AutomationEvent
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