pub struct CellularConfig {
pub initial_floor_chance: f64,
pub iterations: usize,
pub birth_limit: usize,
pub death_limit: usize,
}Fields§
§initial_floor_chance: f64§iterations: usize§birth_limit: usize§death_limit: usizeTrait Implementations§
Source§impl Clone for CellularConfig
impl Clone for CellularConfig
Source§fn clone(&self) -> CellularConfig
fn clone(&self) -> CellularConfig
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 CellularConfig
impl Debug for CellularConfig
Auto Trait Implementations§
impl Freeze for CellularConfig
impl RefUnwindSafe for CellularConfig
impl Send for CellularConfig
impl Sync for CellularConfig
impl Unpin for CellularConfig
impl UnwindSafe for CellularConfig
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