#[repr(u8)]pub enum PropertyProofProfile {
OwnershipProof = 0,
EncumbranceStatus = 1,
CoverageExists = 2,
CoverageInForce = 3,
ClaimStatus = 4,
TitleEventOccurred = 5,
AssetTypeProof = 6,
NoLiensOfType = 7,
}Expand description
Proof profile types for SRC-86X
Variants§
OwnershipProof = 0
Prove ownership of asset
EncumbranceStatus = 1
Prove asset is unencumbered (or encumbrance status)
CoverageExists = 2
Prove coverage exists
CoverageInForce = 3
Prove coverage is in force
ClaimStatus = 4
Prove claim status
TitleEventOccurred = 5
Prove title event occurred
AssetTypeProof = 6
Prove asset type
NoLiensOfType = 7
Prove no liens of type
Trait Implementations§
Source§impl Clone for PropertyProofProfile
impl Clone for PropertyProofProfile
Source§fn clone(&self) -> PropertyProofProfile
fn clone(&self) -> PropertyProofProfile
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 PropertyProofProfile
impl Debug for PropertyProofProfile
Source§impl<'de> Deserialize<'de> for PropertyProofProfile
impl<'de> Deserialize<'de> for PropertyProofProfile
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 PropertyProofProfile
impl PartialEq for PropertyProofProfile
Source§fn eq(&self, other: &PropertyProofProfile) -> bool
fn eq(&self, other: &PropertyProofProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyProofProfile
impl Serialize for PropertyProofProfile
impl Copy for PropertyProofProfile
impl Eq for PropertyProofProfile
impl StructuralPartialEq for PropertyProofProfile
Auto Trait Implementations§
impl Freeze for PropertyProofProfile
impl RefUnwindSafe for PropertyProofProfile
impl Send for PropertyProofProfile
impl Sync for PropertyProofProfile
impl Unpin for PropertyProofProfile
impl UnsafeUnpin for PropertyProofProfile
impl UnwindSafe for PropertyProofProfile
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