#[repr(u8)]pub enum AssetType {
Show 30 variants
SingleFamilyResidence = 0,
MultiFamilyResidence = 1,
Condominium = 2,
Townhouse = 3,
Commercial = 4,
Industrial = 5,
VacantLand = 6,
Agricultural = 7,
MixedUse = 8,
ManufacturedHome = 9,
Automobile = 20,
Motorcycle = 21,
Watercraft = 22,
Aircraft = 23,
RecreationalVehicle = 24,
CommercialVehicle = 25,
HeavyEquipment = 26,
FineArt = 40,
Jewelry = 41,
Collectibles = 42,
Antiques = 43,
MusicalInstruments = 44,
Electronics = 45,
Furniture = 46,
Inventory = 60,
Equipment = 61,
Fixtures = 62,
IpBundle = 63,
Goodwill = 64,
Other = 255,
}Expand description
Asset type classification
Variants§
SingleFamilyResidence = 0
Single family residence
MultiFamilyResidence = 1
Multi-family residence
Condominium = 2
Condominium
Townhouse = 3
Townhouse
Commercial = 4
Commercial property
Industrial = 5
Industrial property
VacantLand = 6
Vacant land
Agricultural = 7
Agricultural land
MixedUse = 8
Mixed use
ManufacturedHome = 9
Manufactured home
Automobile = 20
Automobile
Motorcycle = 21
Motorcycle
Watercraft = 22
Boat/Watercraft
Aircraft = 23
Aircraft
RecreationalVehicle = 24
Recreational vehicle
CommercialVehicle = 25
Commercial vehicle
HeavyEquipment = 26
Heavy equipment
FineArt = 40
Fine art
Jewelry = 41
Jewelry
Collectibles = 42
Collectibles
Antiques = 43
Antiques
MusicalInstruments = 44
Musical instruments
Electronics = 45
Electronics
Furniture = 46
Furniture
Inventory = 60
Inventory
Equipment = 61
Equipment
Fixtures = 62
Fixtures
IpBundle = 63
Intellectual property bundle
Goodwill = 64
Goodwill
Other = 255
Other asset type
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AssetType
impl<'de> Deserialize<'de> for AssetType
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
impl Copy for AssetType
impl Eq for AssetType
impl StructuralPartialEq for AssetType
Auto Trait Implementations§
impl Freeze for AssetType
impl RefUnwindSafe for AssetType
impl Send for AssetType
impl Sync for AssetType
impl Unpin for AssetType
impl UnsafeUnpin for AssetType
impl UnwindSafe for AssetType
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