Struct assembly_xml::obj::res::RespawnPoint
source · pub struct RespawnPoint {
pub world: u32,
pub x: f32,
pub y: f32,
pub z: f32,
}
Expand description
Single respawn point
Fields§
§world: u32
World to which this entry applies
Values: ID from the ZoneTable
x: f32
X-coordinate
y: f32
Y-coordinate
z: f32
Z-coordinate
Trait Implementations§
source§impl Debug for RespawnPoint
impl Debug for RespawnPoint
source§impl Default for RespawnPoint
impl Default for RespawnPoint
source§fn default() -> RespawnPoint
fn default() -> RespawnPoint
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RespawnPoint
impl<'de> Deserialize<'de> for RespawnPoint
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for RespawnPoint
impl PartialEq for RespawnPoint
source§impl Serialize for RespawnPoint
impl Serialize for RespawnPoint
impl StructuralPartialEq for RespawnPoint
Auto Trait Implementations§
impl Freeze for RespawnPoint
impl RefUnwindSafe for RespawnPoint
impl Send for RespawnPoint
impl Sync for RespawnPoint
impl Unpin for RespawnPoint
impl UnwindSafe for RespawnPoint
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