#[non_exhaustive]pub struct ContentClassification {
pub category: String,
pub level: i64,
}Available on crate feature
pubsub only.Expand description
Classification for content according to AutoMod
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.category: StringCategory for classification
On twitch, these are the different categories available for AutoMod
- Aggression Threatening, inciting, or promoting violence or other harm
- Bullying: namecalling Name-calling, insults, or antagonization
- Disability Demonstrating hatred or prejudice based on perceived or actual mental or physical abilities
- Sexuality, sex, or gender Demonstrating hatred or prejudice based on sexual identity, sexual orientation, gender identity, or gender expression
- Misogyny: misogyny Demonstrating hatred or prejudice against women, including sexual objectification
- Race, ethnicity, or religion: racism Demonstrating hatred or prejudice based on race, ethnicity, or religion
- Sex-based terms: sexwords Sexual acts, anatomy
- Swearing: swearing Swear words, &*^!#@%
level: i64Level of classification, eg. how strongly related the classification is related according to AutoMod
Trait Implementations§
Source§impl Clone for ContentClassification
impl Clone for ContentClassification
Source§fn clone(&self) -> ContentClassification
fn clone(&self) -> ContentClassification
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 ContentClassification
impl Debug for ContentClassification
Source§impl<'de> Deserialize<'de> for ContentClassification
impl<'de> Deserialize<'de> for ContentClassification
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 ContentClassification
impl PartialEq for ContentClassification
Source§impl Serialize for ContentClassification
impl Serialize for ContentClassification
impl Eq for ContentClassification
impl StructuralPartialEq for ContentClassification
Auto Trait Implementations§
impl Freeze for ContentClassification
impl RefUnwindSafe for ContentClassification
impl Send for ContentClassification
impl Sync for ContentClassification
impl Unpin for ContentClassification
impl UnwindSafe for ContentClassification
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.