#[repr(i16)]pub enum JigReportType {
Offensive = 0,
CopyrightInfringement = 1,
Spam = 2,
Privacy = 3,
JiTapGameNotPlaying = 4,
Other = 5,
}
Expand description
Type of report
Variants§
Implementations§
Source§impl JigReportType
impl JigReportType
pub fn as_str(&self) -> &'static str
pub fn to_value_str(&self) -> String
pub fn from_value_str(s: &str) -> Self
Trait Implementations§
Source§impl Clone for JigReportType
impl Clone for JigReportType
Source§fn clone(&self) -> JigReportType
fn clone(&self) -> JigReportType
Returns a copy 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 JigReportType
impl Debug for JigReportType
Source§impl<'de> Deserialize<'de> for JigReportType
impl<'de> Deserialize<'de> for JigReportType
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 IntoEnumIterator for JigReportType
impl IntoEnumIterator for JigReportType
type Iterator = JigReportTypeIter
fn iter() -> JigReportTypeIter ⓘ
Source§impl PartialEq for JigReportType
impl PartialEq for JigReportType
Source§impl Serialize for JigReportType
impl Serialize for JigReportType
impl Copy for JigReportType
impl Eq for JigReportType
impl StructuralPartialEq for JigReportType
Auto Trait Implementations§
impl Freeze for JigReportType
impl RefUnwindSafe for JigReportType
impl Send for JigReportType
impl Sync for JigReportType
impl Unpin for JigReportType
impl UnwindSafe for JigReportType
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