pub enum Report {
Nudity,
Profanity,
Illegal,
Spam,
Impersonation,
}
Expand description
Report
Variants§
Nudity
Depictions of nudity, porn, etc
Profanity
Profanity, hateful speech, etc.
Illegal
Something which may be illegal in some jurisdiction
Remember: there is what is right and there is the law.
Spam
Spam
Impersonation
Someone pretending to be someone else
Trait Implementations§
source§impl Ord for Report
impl Ord for Report
source§impl PartialEq<Report> for Report
impl PartialEq<Report> for Report
source§impl PartialOrd<Report> for Report
impl PartialOrd<Report> for Report
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Report
impl StructuralEq for Report
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.