pub struct SimpleRoomsConfig {
pub min_room_size: usize,
pub max_room_size: usize,
pub max_rooms: usize,
pub min_spacing: usize,
}Fields§
§min_room_size: usize§max_room_size: usize§max_rooms: usize§min_spacing: usizeTrait Implementations§
Source§impl Clone for SimpleRoomsConfig
impl Clone for SimpleRoomsConfig
Source§fn clone(&self) -> SimpleRoomsConfig
fn clone(&self) -> SimpleRoomsConfig
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 SimpleRoomsConfig
impl Debug for SimpleRoomsConfig
Auto Trait Implementations§
impl Freeze for SimpleRoomsConfig
impl RefUnwindSafe for SimpleRoomsConfig
impl Send for SimpleRoomsConfig
impl Sync for SimpleRoomsConfig
impl Unpin for SimpleRoomsConfig
impl UnwindSafe for SimpleRoomsConfig
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