#[repr(u8)]pub enum TitleEventType {
Show 29 variants
InitialRegistration = 0,
TitleSearch = 1,
TitleExamination = 2,
TitleCommitment = 3,
DeedRecorded = 10,
GrantDeed = 11,
WarrantyDeed = 12,
QuitclaimDeed = 13,
TrustDeed = 14,
DeedOfGift = 15,
ExecutorsDeed = 16,
TaxDeed = 17,
SheriffsDeed = 18,
OwnershipTransfer = 20,
JointTenancyCreated = 21,
TenancyInCommon = 22,
TrustAssignment = 23,
Inheritance = 24,
DivorceTransfer = 25,
TitleCorrection = 30,
NameChange = 31,
LegalDescriptionUpdate = 32,
EasementRecorded = 33,
CovenantRecorded = 34,
TitleCleared = 40,
ForeclosureCompleted = 41,
TaxSaleCompleted = 42,
Condemnation = 43,
Other = 255,
}Expand description
Title event type
Variants§
InitialRegistration = 0
Initial title registration
TitleSearch = 1
Title search completed
TitleExamination = 2
Title examination
TitleCommitment = 3
Title insurance commitment
DeedRecorded = 10
Deed recorded
GrantDeed = 11
Grant deed
WarrantyDeed = 12
Warranty deed
QuitclaimDeed = 13
Quitclaim deed
TrustDeed = 14
Trust deed
DeedOfGift = 15
Deed of gift
ExecutorsDeed = 16
Executor’s deed
TaxDeed = 17
Tax deed
SheriffsDeed = 18
Sheriff’s deed
OwnershipTransfer = 20
Ownership transfer
JointTenancyCreated = 21
Joint tenancy creation
TenancyInCommon = 22
Tenancy in common
TrustAssignment = 23
Trust assignment
Inheritance = 24
Inheritance
DivorceTransfer = 25
Divorce decree transfer
TitleCorrection = 30
Title correction
NameChange = 31
Name change
LegalDescriptionUpdate = 32
Legal description update
EasementRecorded = 33
Easement recorded
CovenantRecorded = 34
Covenant recorded
TitleCleared = 40
Title cleared
ForeclosureCompleted = 41
Foreclosure completed
TaxSaleCompleted = 42
Tax sale completed
Condemnation = 43
Condemnation
Other = 255
Other event
Trait Implementations§
Source§impl Clone for TitleEventType
impl Clone for TitleEventType
Source§fn clone(&self) -> TitleEventType
fn clone(&self) -> TitleEventType
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 TitleEventType
impl Debug for TitleEventType
Source§impl<'de> Deserialize<'de> for TitleEventType
impl<'de> Deserialize<'de> for TitleEventType
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 TitleEventType
impl Hash for TitleEventType
Source§impl PartialEq for TitleEventType
impl PartialEq for TitleEventType
Source§fn eq(&self, other: &TitleEventType) -> bool
fn eq(&self, other: &TitleEventType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TitleEventType
impl Serialize for TitleEventType
impl Copy for TitleEventType
impl Eq for TitleEventType
impl StructuralPartialEq for TitleEventType
Auto Trait Implementations§
impl Freeze for TitleEventType
impl RefUnwindSafe for TitleEventType
impl Send for TitleEventType
impl Sync for TitleEventType
impl Unpin for TitleEventType
impl UnsafeUnpin for TitleEventType
impl UnwindSafe for TitleEventType
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