pub struct ModerationResult {
pub flagged: bool,
pub categories: HashMap<String, bool>,
pub category_scores: HashMap<String, f64>,
pub category_applied_input_types: Option<Value>,
}Expand description
Per-input moderation verdict. Category keys use the API’s names
(e.g. "harassment/threatening").
Fields§
§flagged: boolWhether any category was flagged.
categories: HashMap<String, bool>Per-category boolean verdicts.
category_scores: HashMap<String, f64>Per-category confidence scores (0.0-1.0).
category_applied_input_types: Option<Value>Which input modalities triggered each category (multimodal models).
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 (const: unstable) · 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 UnsafeUnpin 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