pub struct PathDataSpawner {
pub spawned_lot: ObjectTemplate,
pub respawn_time: u32,
pub max_to_spawn: u32,
pub min_to_spawn: u32,
pub spawner_obj_id: ObjectID,
pub activate_network_on_load: bool,
}Expand description
General data for a spawner path
Fields§
§spawned_lot: ObjectTemplateThe object to be spawned
respawn_time: u32Time until respawn
max_to_spawn: u32max to spawn (MAX_VALUE for infinity)
min_to_spawn: u32number to maintain spawned
spawner_obj_id: ObjectIDSpawner object ID without flags
activate_network_on_load: boolActivate network on load
Trait Implementations§
source§impl Debug for PathDataSpawner
impl Debug for PathDataSpawner
source§impl Serialize for PathDataSpawner
impl Serialize for PathDataSpawner
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for PathDataSpawner
impl RefUnwindSafe for PathDataSpawner
impl Send for PathDataSpawner
impl Sync for PathDataSpawner
impl Unpin for PathDataSpawner
impl UnwindSafe for PathDataSpawner
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<I, T> ExtractContext<I, ()> for T
impl<I, T> ExtractContext<I, ()> for T
§fn extract_context(self, _original_input: I)
fn extract_context(self, _original_input: I)
Given the context attached to a nom error, and given the original
input to the nom parser, extract more the useful context information. Read more
§impl<I> RecreateContext<I> for I
impl<I> RecreateContext<I> for I
§fn recreate_context(_original_input: I, tail: I) -> I
fn recreate_context(_original_input: I, tail: I) -> I
Given the original input, as well as the context reported by nom,
recreate a context in the original string where the error occurred. Read more