pub struct ModerationResult {
pub categories: BTreeMap<String, bool>,
pub category_applied_input_types: BTreeMap<String, Vec<String>>,
pub category_scores: BTreeMap<String, f64>,
pub flagged: bool,
pub extra: BTreeMap<String, Value>,
}Expand description
表示单个 moderation 结果。
Fields§
§categories: BTreeMap<String, bool>命中的分类布尔值。
category_applied_input_types: BTreeMap<String, Vec<String>>分类对应的输入类型。
category_scores: BTreeMap<String, f64>分类分数。
flagged: bool是否命中任一分类。
extra: BTreeMap<String, Value>额外字段。
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 Default for ModerationResult
impl Default for ModerationResult
Source§fn default() -> ModerationResult
fn default() -> ModerationResult
Returns the “default value” for a type. Read more
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