pub struct ClientSpawnQueryItem<'__w, '__s> {
pub is_hardcore: <&'static mut IsHardcore as QueryData>::Item<'__w, '__s>,
pub game_mode: <&'static mut GameMode as QueryData>::Item<'__w, '__s>,
pub prev_game_mode: <&'static mut PrevGameMode as QueryData>::Item<'__w, '__s>,
pub hashed_seed: <&'static mut HashedSeed as QueryData>::Item<'__w, '__s>,
pub view_distance: <&'static mut ViewDistance as QueryData>::Item<'__w, '__s>,
pub reduced_debug_info: <&'static mut ReducedDebugInfo as QueryData>::Item<'__w, '__s>,
pub has_respawn_screen: <&'static mut HasRespawnScreen as QueryData>::Item<'__w, '__s>,
pub is_debug: <&'static mut IsDebug as QueryData>::Item<'__w, '__s>,
pub is_flat: <&'static mut IsFlat as QueryData>::Item<'__w, '__s>,
pub death_loc: <&'static mut DeathLocation as QueryData>::Item<'__w, '__s>,
pub portal_cooldown: <&'static mut PortalCooldown as QueryData>::Item<'__w, '__s>,
}Expand description
Automatically generated WorldQuery item type for ClientSpawnQuery, returned when iterating over query results.
Fields§
§is_hardcore: <&'static mut IsHardcore as QueryData>::Item<'__w, '__s>§game_mode: <&'static mut GameMode as QueryData>::Item<'__w, '__s>§prev_game_mode: <&'static mut PrevGameMode as QueryData>::Item<'__w, '__s>§hashed_seed: <&'static mut HashedSeed as QueryData>::Item<'__w, '__s>§view_distance: <&'static mut ViewDistance as QueryData>::Item<'__w, '__s>§reduced_debug_info: <&'static mut ReducedDebugInfo as QueryData>::Item<'__w, '__s>§has_respawn_screen: <&'static mut HasRespawnScreen as QueryData>::Item<'__w, '__s>§is_debug: <&'static mut IsDebug as QueryData>::Item<'__w, '__s>§is_flat: <&'static mut IsFlat as QueryData>::Item<'__w, '__s>§death_loc: <&'static mut DeathLocation as QueryData>::Item<'__w, '__s>§portal_cooldown: <&'static mut PortalCooldown as QueryData>::Item<'__w, '__s>Auto Trait Implementations§
impl<'__w, '__s> Freeze for ClientSpawnQueryItem<'__w, '__s>
impl<'__w, '__s> RefUnwindSafe for ClientSpawnQueryItem<'__w, '__s>
impl<'__w, '__s> Send for ClientSpawnQueryItem<'__w, '__s>
impl<'__w, '__s> Sync for ClientSpawnQueryItem<'__w, '__s>
impl<'__w, '__s> Unpin for ClientSpawnQueryItem<'__w, '__s>
impl<'__w, '__s> UnsafeUnpin for ClientSpawnQueryItem<'__w, '__s>
impl<'__w, '__s> !UnwindSafe for ClientSpawnQueryItem<'__w, '__s>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.