pub struct ModerationResult {
pub flagged: bool,
pub categories: ModerationCategories,
pub category_scores: ModerationCategoryScores,
}Expand description
A single moderation result.
Fields§
§flagged: boolWhether any of the below categories are flagged.
categories: ModerationCategoriesA list of the categories, and whether they are flagged or not.
category_scores: ModerationCategoryScoresA list of the categories along with their scores as predicted by model.
Trait Implementations§
Source§impl Clone for ModerationResult
impl Clone for ModerationResult
Source§fn clone(&self) -> ModerationResult
fn clone(&self) -> ModerationResult
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 ModerationResult
impl Debug for ModerationResult
Source§impl<'de> Deserialize<'de> for ModerationResult
impl<'de> Deserialize<'de> for ModerationResult
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
Auto Trait Implementations§
impl Freeze for ModerationResult
impl RefUnwindSafe for ModerationResult
impl Send for ModerationResult
impl Sync for ModerationResult
impl Unpin for ModerationResult
impl UnwindSafe for ModerationResult
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