Skip to main content

EncumbranceType

Enum EncumbranceType 

Source
#[repr(u8)]
pub enum EncumbranceType {
Show 29 variants FirstMortgage = 0, SecondMortgage = 1, Heloc = 2, ReverseMortgage = 3, ConstructionLoan = 4, CommercialMortgage = 5, MechanicsLien = 10, TaxLien = 11, JudgmentLien = 12, HoaLien = 13, ChildSupportLien = 14, IrsLien = 15, MunicipalLien = 16, UccLien = 17, VoluntaryLien = 18, AttachmentLien = 19, ResidentialLease = 30, CommercialLease = 31, GroundLease = 32, Sublease = 33, Easement = 40, RightOfWay = 41, RestrictiveCovenant = 42, ConservationEasement = 43, UtilityEasement = 44, LisPendens = 50, NoticeOfDefault = 51, NoticeOfTrusteeSale = 52, Other = 255,
}
Expand description

Encumbrance type

Variants§

§

FirstMortgage = 0

First mortgage/deed of trust

§

SecondMortgage = 1

Second mortgage

§

Heloc = 2

Home equity line of credit

§

ReverseMortgage = 3

Reverse mortgage

§

ConstructionLoan = 4

Construction loan

§

CommercialMortgage = 5

Commercial mortgage

§

MechanicsLien = 10

Mechanics lien

§

TaxLien = 11

Tax lien

§

JudgmentLien = 12

Judgment lien

§

HoaLien = 13

HOA lien

§

ChildSupportLien = 14

Child support lien

§

IrsLien = 15

IRS lien

§

MunicipalLien = 16

Municipal lien

§

UccLien = 17

UCC lien

§

VoluntaryLien = 18

Voluntary lien

§

AttachmentLien = 19

Attachment lien

§

ResidentialLease = 30

Residential lease

§

CommercialLease = 31

Commercial lease

§

GroundLease = 32

Ground lease

§

Sublease = 33

Sublease

§

Easement = 40

Easement

§

RightOfWay = 41

Right of way

§

RestrictiveCovenant = 42

Restrictive covenant

§

ConservationEasement = 43

Conservation easement

§

UtilityEasement = 44

Utility easement

§

LisPendens = 50

Lis pendens

§

NoticeOfDefault = 51

Notice of default

§

NoticeOfTrusteeSale = 52

Notice of trustee sale

§

Other = 255

Other encumbrance

Trait Implementations§

Source§

impl Clone for EncumbranceType

Source§

fn clone(&self) -> EncumbranceType

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EncumbranceType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for EncumbranceType

Source§

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 EncumbranceType

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for EncumbranceType

Source§

fn eq(&self, other: &EncumbranceType) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for EncumbranceType

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for EncumbranceType

Source§

impl Eq for EncumbranceType

Source§

impl StructuralPartialEq for EncumbranceType

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,