#[repr(u8)]pub enum PropertyOperation {
Show 31 variants
AnchorAsset = 0,
UpdateAsset = 1,
TransferAsset = 2,
MergeAssets = 3,
SubdivideAsset = 4,
DeregisterAsset = 5,
RecordTitleEvent = 10,
UpdateTitleEvent = 11,
SupersedeTitleEvent = 12,
VoidTitleEvent = 13,
RecordEncumbrance = 20,
UpdateEncumbrance = 21,
SubordinateEncumbrance = 22,
ReleaseEncumbrance = 23,
ForecloseEncumbrance = 24,
IssueCoverage = 30,
UpdateCoverage = 31,
RenewCoverage = 32,
CancelCoverage = 33,
SuspendCoverage = 34,
ReinstateCoverage = 35,
FileClaim = 40,
UpdateClaim = 41,
ApproveClaim = 42,
DenyClaim = 43,
PayClaim = 44,
CloseClaim = 45,
ReopenClaim = 46,
WithdrawClaim = 47,
SubmitProof = 50,
VerifyProof = 51,
}Expand description
SRC-86X Operation codes
Variants§
AnchorAsset = 0
UpdateAsset = 1
TransferAsset = 2
MergeAssets = 3
SubdivideAsset = 4
DeregisterAsset = 5
RecordTitleEvent = 10
UpdateTitleEvent = 11
SupersedeTitleEvent = 12
VoidTitleEvent = 13
RecordEncumbrance = 20
UpdateEncumbrance = 21
SubordinateEncumbrance = 22
ReleaseEncumbrance = 23
ForecloseEncumbrance = 24
IssueCoverage = 30
UpdateCoverage = 31
RenewCoverage = 32
CancelCoverage = 33
SuspendCoverage = 34
ReinstateCoverage = 35
FileClaim = 40
UpdateClaim = 41
ApproveClaim = 42
DenyClaim = 43
PayClaim = 44
CloseClaim = 45
ReopenClaim = 46
WithdrawClaim = 47
SubmitProof = 50
VerifyProof = 51
Trait Implementations§
Source§impl Clone for PropertyOperation
impl Clone for PropertyOperation
Source§fn clone(&self) -> PropertyOperation
fn clone(&self) -> PropertyOperation
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 PropertyOperation
impl Debug for PropertyOperation
Source§impl<'de> Deserialize<'de> for PropertyOperation
impl<'de> Deserialize<'de> for PropertyOperation
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 PropertyOperation
impl PartialEq for PropertyOperation
Source§fn eq(&self, other: &PropertyOperation) -> bool
fn eq(&self, other: &PropertyOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyOperation
impl Serialize for PropertyOperation
impl Copy for PropertyOperation
impl Eq for PropertyOperation
impl StructuralPartialEq for PropertyOperation
Auto Trait Implementations§
impl Freeze for PropertyOperation
impl RefUnwindSafe for PropertyOperation
impl Send for PropertyOperation
impl Sync for PropertyOperation
impl Unpin for PropertyOperation
impl UnsafeUnpin for PropertyOperation
impl UnwindSafe for PropertyOperation
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