pub struct ApiWorldType {
pub level_name: String,
pub date_time: String,
pub time_factor: f32,
pub base_latitude: f64,
pub base_longitude: f64,
}Expand description
World telemetry data.
Fields§
§level_name: StringName of the current level.
date_time: StringCurrent date and time in the game.
time_factor: f32Time acceleration factor.
base_latitude: f64Latitude of the world origin.
base_longitude: f64Longitude of the world origin.
Trait Implementations§
Source§impl Debug for ApiWorldType
impl Debug for ApiWorldType
Source§impl<'de> Deserialize<'de> for ApiWorldType
impl<'de> Deserialize<'de> for ApiWorldType
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 ApiWorldType
impl PartialEq for ApiWorldType
impl StructuralPartialEq for ApiWorldType
Auto Trait Implementations§
impl Freeze for ApiWorldType
impl RefUnwindSafe for ApiWorldType
impl Send for ApiWorldType
impl Sync for ApiWorldType
impl Unpin for ApiWorldType
impl UnsafeUnpin for ApiWorldType
impl UnwindSafe for ApiWorldType
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