#[repr(u8)]pub enum CaseType {
Show 13 variants
Civil = 0,
Criminal = 1,
Administrative = 2,
Family = 3,
Probate = 4,
Bankruptcy = 5,
SmallClaims = 6,
Arbitration = 7,
Mediation = 8,
Regulatory = 9,
TaxCourt = 10,
Immigration = 11,
Other = 255,
}Expand description
Case type classification
Variants§
Civil = 0
Civil litigation
Criminal = 1
Criminal proceeding
Administrative = 2
Administrative proceeding
Family = 3
Family law
Probate = 4
Probate/Estate
Bankruptcy = 5
Bankruptcy
SmallClaims = 6
Small claims
Arbitration = 7
Arbitration
Mediation = 8
Mediation
Regulatory = 9
Regulatory
TaxCourt = 10
Tax court
Immigration = 11
Immigration
Other = 255
Other
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CaseType
impl<'de> Deserialize<'de> for CaseType
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
impl Copy for CaseType
impl Eq for CaseType
impl StructuralPartialEq for CaseType
Auto Trait Implementations§
impl Freeze for CaseType
impl RefUnwindSafe for CaseType
impl Send for CaseType
impl Sync for CaseType
impl Unpin for CaseType
impl UnsafeUnpin for CaseType
impl UnwindSafe for CaseType
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