Enum map_model::BuildingType
source · pub enum BuildingType {
Residential {
num_residents: usize,
num_housing_units: usize,
},
ResidentialCommercial(usize, usize),
Commercial(usize),
Empty,
}
Variants§
Residential
ResidentialCommercial(usize, usize)
An estimated number of residents, workers
Commercial(usize)
An estimated number of workers
Empty
Implementations§
source§impl BuildingType
impl BuildingType
pub fn has_residents(&self) -> bool
Trait Implementations§
source§impl Clone for BuildingType
impl Clone for BuildingType
source§fn clone(&self) -> BuildingType
fn clone(&self) -> BuildingType
Returns a copy 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 BuildingType
impl Debug for BuildingType
source§impl<'de> Deserialize<'de> for BuildingType
impl<'de> Deserialize<'de> for BuildingType
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
Auto Trait Implementations§
impl Freeze for BuildingType
impl RefUnwindSafe for BuildingType
impl Send for BuildingType
impl Sync for BuildingType
impl Unpin for BuildingType
impl UnwindSafe for BuildingType
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