pub struct CommentLogData {Show 46 fields
pub clear_content: Option<bool>,
pub is_deleted_user: Option<bool>,
pub phrase: Option<String>,
pub bad_word: Option<String>,
pub word: Option<String>,
pub locale: Option<String>,
pub tenant_badge_id: Option<String>,
pub badge_id: Option<String>,
pub was_logged_in: Option<bool>,
pub found_user: Option<bool>,
pub verified: Option<bool>,
pub engine: Option<String>,
pub engine_response: Option<String>,
pub engine_tokens: Option<f64>,
pub trust_factor: Option<f64>,
pub rule: Option<Box<SpamRule>>,
pub user_id: Option<String>,
pub subscribers: Option<f64>,
pub notification_count: Option<f64>,
pub votes_before: Option<Option<f64>>,
pub votes_up_before: Option<Option<f64>>,
pub votes_down_before: Option<Option<f64>>,
pub votes_after: Option<Option<f64>>,
pub votes_up_after: Option<Option<f64>>,
pub votes_down_after: Option<Option<f64>>,
pub repeat_action: Option<RepeatCommentHandlingAction>,
pub reason: Option<RepeatCommentCheckIgnoredReason>,
pub other_data: Option<Option<Value>>,
pub spam_before: Option<bool>,
pub spam_after: Option<bool>,
pub permanent_flag: Option<PermanentFlag>,
pub approved_before: Option<bool>,
pub approved_after: Option<bool>,
pub reviewed_before: Option<bool>,
pub reviewed_after: Option<bool>,
pub text_before: Option<String>,
pub text_after: Option<String>,
pub expire_before: Option<Option<String>>,
pub expire_after: Option<Option<String>>,
pub flag_count_before: Option<Option<f64>>,
pub trust_factor_before: Option<f64>,
pub trust_factor_after: Option<f64>,
pub referenced_comment_id: Option<String>,
pub invalid_locale: Option<String>,
pub detected_locale: Option<String>,
pub detected_language: Option<String>,
}Fields§
§clear_content: Option<bool>§is_deleted_user: Option<bool>§phrase: Option<String>§bad_word: Option<String>§word: Option<String>§locale: Option<String>§tenant_badge_id: Option<String>§badge_id: Option<String>§was_logged_in: Option<bool>§found_user: Option<bool>§verified: Option<bool>§engine: Option<String>§engine_response: Option<String>§engine_tokens: Option<f64>§trust_factor: Option<f64>§rule: Option<Box<SpamRule>>§user_id: Option<String>§subscribers: Option<f64>§notification_count: Option<f64>§votes_before: Option<Option<f64>>§votes_up_before: Option<Option<f64>>§votes_down_before: Option<Option<f64>>§votes_after: Option<Option<f64>>§votes_up_after: Option<Option<f64>>§votes_down_after: Option<Option<f64>>§repeat_action: Option<RepeatCommentHandlingAction>§reason: Option<RepeatCommentCheckIgnoredReason>§other_data: Option<Option<Value>>§spam_before: Option<bool>§spam_after: Option<bool>§permanent_flag: Option<PermanentFlag>§approved_before: Option<bool>§approved_after: Option<bool>§reviewed_before: Option<bool>§reviewed_after: Option<bool>§text_before: Option<String>§text_after: Option<String>§expire_before: Option<Option<String>>§expire_after: Option<Option<String>>§flag_count_before: Option<Option<f64>>§trust_factor_before: Option<f64>§trust_factor_after: Option<f64>§referenced_comment_id: Option<String>§invalid_locale: Option<String>§detected_locale: Option<String>§detected_language: Option<String>Implementations§
Source§impl CommentLogData
impl CommentLogData
pub fn new() -> CommentLogData
Trait Implementations§
Source§impl Clone for CommentLogData
impl Clone for CommentLogData
Source§fn clone(&self) -> CommentLogData
fn clone(&self) -> CommentLogData
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 CommentLogData
impl Debug for CommentLogData
Source§impl Default for CommentLogData
impl Default for CommentLogData
Source§fn default() -> CommentLogData
fn default() -> CommentLogData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentLogData
impl<'de> Deserialize<'de> for CommentLogData
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 CommentLogData
impl PartialEq for CommentLogData
Source§impl Serialize for CommentLogData
impl Serialize for CommentLogData
impl StructuralPartialEq for CommentLogData
Auto Trait Implementations§
impl Freeze for CommentLogData
impl RefUnwindSafe for CommentLogData
impl Send for CommentLogData
impl Sync for CommentLogData
impl Unpin for CommentLogData
impl UnwindSafe for CommentLogData
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