#[repr(u8)]pub enum PropertyIssuerClass {
Show 16 variants
LandRegistry = 0,
MotorVehicleDept = 1,
TaxAssessor = 2,
GovernmentAgency = 3,
AviationAuthority = 4,
MaritimeAuthority = 5,
TitleCompany = 10,
EscrowCompany = 11,
RealEstateAttorney = 12,
Appraiser = 13,
Surveyor = 14,
InsuranceCompany = 15,
MortgageLender = 16,
PropertyManager = 17,
Notary = 18,
Other = 255,
}Expand description
Property issuer class (SRC-802 compatible)
Variants§
LandRegistry = 0
Land registry/recorder’s office
MotorVehicleDept = 1
Motor vehicle department
TaxAssessor = 2
Tax assessor
GovernmentAgency = 3
Government agency
AviationAuthority = 4
FAA (aircraft registry)
MaritimeAuthority = 5
Coast Guard (vessel registry)
TitleCompany = 10
Title company
EscrowCompany = 11
Escrow company
RealEstateAttorney = 12
Real estate attorney
Appraiser = 13
Appraiser
Surveyor = 14
Surveyor
InsuranceCompany = 15
Insurance company
MortgageLender = 16
Mortgage lender
PropertyManager = 17
Property manager
Notary = 18
Notary
Other = 255
Other authorized issuer
Implementations§
Trait Implementations§
Source§impl Clone for PropertyIssuerClass
impl Clone for PropertyIssuerClass
Source§fn clone(&self) -> PropertyIssuerClass
fn clone(&self) -> PropertyIssuerClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PropertyIssuerClass
impl Debug for PropertyIssuerClass
Source§impl<'de> Deserialize<'de> for PropertyIssuerClass
impl<'de> Deserialize<'de> for PropertyIssuerClass
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 Hash for PropertyIssuerClass
impl Hash for PropertyIssuerClass
Source§impl PartialEq for PropertyIssuerClass
impl PartialEq for PropertyIssuerClass
Source§fn eq(&self, other: &PropertyIssuerClass) -> bool
fn eq(&self, other: &PropertyIssuerClass) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyIssuerClass
impl Serialize for PropertyIssuerClass
impl Copy for PropertyIssuerClass
impl Eq for PropertyIssuerClass
impl StructuralPartialEq for PropertyIssuerClass
Auto Trait Implementations§
impl Freeze for PropertyIssuerClass
impl RefUnwindSafe for PropertyIssuerClass
impl Send for PropertyIssuerClass
impl Sync for PropertyIssuerClass
impl Unpin for PropertyIssuerClass
impl UnsafeUnpin for PropertyIssuerClass
impl UnwindSafe for PropertyIssuerClass
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