pub struct OnScriptPathRequestFinishedEvent {
pub id: u32,
pub name: &'static str,
pub path: &'static [LuaAny],
pub tick: u32,
pub try_again_later: bool,
}Expand description
Called when a LuaSurface::request_path call completes.
Fields§
§id: u32§name: &'static str§path: &'static [LuaAny]§tick: u32§try_again_later: boolTrait Implementations§
Source§impl Clone for OnScriptPathRequestFinishedEvent
impl Clone for OnScriptPathRequestFinishedEvent
Source§fn clone(&self) -> OnScriptPathRequestFinishedEvent
fn clone(&self) -> OnScriptPathRequestFinishedEvent
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 OnScriptPathRequestFinishedEvent
Source§impl Default for OnScriptPathRequestFinishedEvent
impl Default for OnScriptPathRequestFinishedEvent
Source§fn default() -> OnScriptPathRequestFinishedEvent
fn default() -> OnScriptPathRequestFinishedEvent
Returns the “default value” for a type. Read more
impl StructuralPartialEq for OnScriptPathRequestFinishedEvent
Auto Trait Implementations§
impl Freeze for OnScriptPathRequestFinishedEvent
impl RefUnwindSafe for OnScriptPathRequestFinishedEvent
impl Send for OnScriptPathRequestFinishedEvent
impl Sync for OnScriptPathRequestFinishedEvent
impl Unpin for OnScriptPathRequestFinishedEvent
impl UnsafeUnpin for OnScriptPathRequestFinishedEvent
impl UnwindSafe for OnScriptPathRequestFinishedEvent
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