pub enum PropertySubtype {
SingleFamilyHome,
MultiFamilyHome,
Condominium,
Townhouse,
InvestmentProperty,
SecondHome,
}Expand description
Subtype for property assets
Variants§
SingleFamilyHome
Single family home
MultiFamilyHome
Multi-family home
Condominium
Condominium
Townhouse
Townhouse
InvestmentProperty
Investment property
SecondHome
Second home
Trait Implementations§
Source§impl Clone for PropertySubtype
impl Clone for PropertySubtype
Source§fn clone(&self) -> PropertySubtype
fn clone(&self) -> PropertySubtype
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 PropertySubtype
impl Debug for PropertySubtype
Source§impl<'de> Deserialize<'de> for PropertySubtype
impl<'de> Deserialize<'de> for PropertySubtype
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 PropertySubtype
impl PartialEq for PropertySubtype
Source§impl Serialize for PropertySubtype
impl Serialize for PropertySubtype
impl Eq for PropertySubtype
impl StructuralPartialEq for PropertySubtype
Auto Trait Implementations§
impl Freeze for PropertySubtype
impl RefUnwindSafe for PropertySubtype
impl Send for PropertySubtype
impl Sync for PropertySubtype
impl Unpin for PropertySubtype
impl UnwindSafe for PropertySubtype
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