#[repr(u8)]pub enum TitleEventStatus {
Recorded = 0,
Pending = 1,
Superseded = 2,
Voided = 3,
Corrected = 4,
}Expand description
Title event status
Variants§
Recorded = 0
Event recorded
Pending = 1
Event pending
Superseded = 2
Event superseded
Voided = 3
Event voided
Corrected = 4
Event corrected
Trait Implementations§
Source§impl Clone for TitleEventStatus
impl Clone for TitleEventStatus
Source§fn clone(&self) -> TitleEventStatus
fn clone(&self) -> TitleEventStatus
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 TitleEventStatus
impl Debug for TitleEventStatus
Source§impl<'de> Deserialize<'de> for TitleEventStatus
impl<'de> Deserialize<'de> for TitleEventStatus
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 TitleEventStatus
impl PartialEq for TitleEventStatus
Source§fn eq(&self, other: &TitleEventStatus) -> bool
fn eq(&self, other: &TitleEventStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TitleEventStatus
impl Serialize for TitleEventStatus
impl Copy for TitleEventStatus
impl Eq for TitleEventStatus
impl StructuralPartialEq for TitleEventStatus
Auto Trait Implementations§
impl Freeze for TitleEventStatus
impl RefUnwindSafe for TitleEventStatus
impl Send for TitleEventStatus
impl Sync for TitleEventStatus
impl Unpin for TitleEventStatus
impl UnsafeUnpin for TitleEventStatus
impl UnwindSafe for TitleEventStatus
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