Skip to main content

IGameUserHubDataMethods

Trait IGameUserHubDataMethods 

Source
pub trait IGameUserHubDataMethods: IGameUserHubData {
Show 16 methods // Provided methods fn get_last_position(self) -> Vector3 { ... } fn set_last_position(self, value: impl Into<Vector3>) { ... } fn get_last_dir_y(self) -> f32 { ... } fn set_last_dir_y(self, value: impl Into<f32>) { ... } fn get_camera_speed(self) -> i32 { ... } fn set_camera_speed(self, value: impl Into<i32>) { ... } fn get_is_minimap_rotate(self) -> bool { ... } fn set_is_minimap_rotate(self, value: impl Into<bool>) { ... } fn get_camera_zoom_param(self) -> f32 { ... } fn set_camera_zoom_param(self, value: impl Into<f32>) { ... } fn get_map_mode(self) -> i32 { ... } fn set_map_mode(self, value: impl Into<i32>) { ... } fn ctor(self) { ... } fn reset(self) { ... } fn serialize(self, stream: impl Into<Stream_2>) { ... } fn deserialize(self, stream: impl Into<Stream_2>) { ... }
}

Provided Methods§

Source

fn get_last_position(self) -> Vector3

get_LastPosition() overload

Source

fn set_last_position(self, value: impl Into<Vector3>)

set_LastPosition(crate::unity_engine::vector3::Vector3) overload

Source

fn get_last_dir_y(self) -> f32

get_LastDirY() overload

Source

fn set_last_dir_y(self, value: impl Into<f32>)

set_LastDirY(f32) overload

Source

fn get_camera_speed(self) -> i32

get_CameraSpeed() overload

Source

fn set_camera_speed(self, value: impl Into<i32>)

set_CameraSpeed(i32) overload

Source

fn get_is_minimap_rotate(self) -> bool

get_IsMinimapRotate() overload

Source

fn set_is_minimap_rotate(self, value: impl Into<bool>)

set_IsMinimapRotate(bool) overload

Source

fn get_camera_zoom_param(self) -> f32

get_CameraZoomParam() overload

Source

fn set_camera_zoom_param(self, value: impl Into<f32>)

set_CameraZoomParam(f32) overload

Source

fn get_map_mode(self) -> i32

get_MapMode() overload

Source

fn set_map_mode(self, value: impl Into<i32>)

set_MapMode(i32) overload

Source

fn ctor(self)

.ctor() overload

Source

fn reset(self)

Reset() overload

Source

fn serialize(self, stream: impl Into<Stream_2>)

Serialize(crate::app::stream_2::Stream_2) overload

Source

fn deserialize(self, stream: impl Into<Stream_2>)

Deserialize(crate::app::stream_2::Stream_2) overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IGameUserHubData> IGameUserHubDataMethods for __T

Available on crate feature app-gameuserhubdata only.