pub struct LuaBootstrapRaisePlayerFastTransferredParams {
pub entity: LuaEntity,
pub from_player: bool,
pub is_split: bool,
pub player_index: u32,
}Fields§
§entity: LuaEntityThe entity transferred from or to.
from_player: boolWhether the transfer was from player to entity. If false, the transfer was from entity to player.
is_split: boolWhether the transfer was a split action (half stack).
player_index: u32The player transferred from or to.
Trait Implementations§
Source§impl Clone for LuaBootstrapRaisePlayerFastTransferredParams
impl Clone for LuaBootstrapRaisePlayerFastTransferredParams
Source§fn clone(&self) -> LuaBootstrapRaisePlayerFastTransferredParams
fn clone(&self) -> LuaBootstrapRaisePlayerFastTransferredParams
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 moreSource§impl Default for LuaBootstrapRaisePlayerFastTransferredParams
impl Default for LuaBootstrapRaisePlayerFastTransferredParams
Source§fn default() -> LuaBootstrapRaisePlayerFastTransferredParams
fn default() -> LuaBootstrapRaisePlayerFastTransferredParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LuaBootstrapRaisePlayerFastTransferredParams
impl RefUnwindSafe for LuaBootstrapRaisePlayerFastTransferredParams
impl Send for LuaBootstrapRaisePlayerFastTransferredParams
impl Sync for LuaBootstrapRaisePlayerFastTransferredParams
impl Unpin for LuaBootstrapRaisePlayerFastTransferredParams
impl UnsafeUnpin for LuaBootstrapRaisePlayerFastTransferredParams
impl UnwindSafe for LuaBootstrapRaisePlayerFastTransferredParams
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