pub enum OrganizedCrime {
FactionCrime(FactionCrime),
UserOrganizedCrimeError(UserOrganizedCrimeError),
}
Variants§
FactionCrime(FactionCrime)
UserOrganizedCrimeError(UserOrganizedCrimeError)
Trait Implementations§
Source§impl Clone for OrganizedCrime
impl Clone for OrganizedCrime
Source§fn clone(&self) -> OrganizedCrime
fn clone(&self) -> OrganizedCrime
Returns a duplicate of the value. Read more
1.0.0 · 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 OrganizedCrime
impl Debug for OrganizedCrime
Source§impl<'de> Deserialize<'de> for OrganizedCrime
impl<'de> Deserialize<'de> for OrganizedCrime
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 From<FactionCrime> for OrganizedCrime
impl From<FactionCrime> for OrganizedCrime
Source§fn from(value: FactionCrime) -> Self
fn from(value: FactionCrime) -> Self
Converts to this type from the input type.
Source§impl From<UserOrganizedCrimeError> for OrganizedCrime
impl From<UserOrganizedCrimeError> for OrganizedCrime
Source§fn from(value: UserOrganizedCrimeError) -> Self
fn from(value: UserOrganizedCrimeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OrganizedCrime
impl PartialEq for OrganizedCrime
impl StructuralPartialEq for OrganizedCrime
Auto Trait Implementations§
impl Freeze for OrganizedCrime
impl RefUnwindSafe for OrganizedCrime
impl Send for OrganizedCrime
impl Sync for OrganizedCrime
impl Unpin for OrganizedCrime
impl UnwindSafe for OrganizedCrime
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