pub struct ApiConfigEvents {
pub distance_close: i32,
pub distance_factor: i32,
pub distance_far: i32,
pub group_distance: i32,
pub maximum_bunch_size: i32,
pub not_visible_factor: i32,
pub player_order_bucket_size: i32,
pub player_order_factor: i32,
pub slow_update_factor_threshold: i32,
pub use_direct_player_serialization: bool,
pub view_segment_length: i32,
}Fields§
§distance_close: i32Unknown
distance_factor: i32Unknown
distance_far: i32Unknown
group_distance: i32Unknown
maximum_bunch_size: i32Unknown
not_visible_factor: i32Unknown
player_order_bucket_size: i32Unknown
player_order_factor: i32Unknown
slow_update_factor_threshold: i32Unknown
use_direct_player_serialization: boolUnknown
view_segment_length: i32Unknown
Implementations§
Source§impl ApiConfigEvents
impl ApiConfigEvents
pub fn new( distance_close: i32, distance_factor: i32, distance_far: i32, group_distance: i32, maximum_bunch_size: i32, not_visible_factor: i32, player_order_bucket_size: i32, player_order_factor: i32, slow_update_factor_threshold: i32, use_direct_player_serialization: bool, view_segment_length: i32, ) -> ApiConfigEvents
Trait Implementations§
Source§impl Clone for ApiConfigEvents
impl Clone for ApiConfigEvents
Source§fn clone(&self) -> ApiConfigEvents
fn clone(&self) -> ApiConfigEvents
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ApiConfigEvents
impl Debug for ApiConfigEvents
Source§impl Default for ApiConfigEvents
impl Default for ApiConfigEvents
Source§fn default() -> ApiConfigEvents
fn default() -> ApiConfigEvents
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiConfigEvents
impl<'de> Deserialize<'de> for ApiConfigEvents
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 ApiConfigEvents
impl PartialEq for ApiConfigEvents
Source§impl Serialize for ApiConfigEvents
impl Serialize for ApiConfigEvents
impl StructuralPartialEq for ApiConfigEvents
Auto Trait Implementations§
impl Freeze for ApiConfigEvents
impl RefUnwindSafe for ApiConfigEvents
impl Send for ApiConfigEvents
impl Sync for ApiConfigEvents
impl Unpin for ApiConfigEvents
impl UnwindSafe for ApiConfigEvents
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