pub struct UpdatableCommentParams {Show 39 fields
pub url_id: Option<String>,
pub url_id_raw: Option<String>,
pub url: Option<String>,
pub page_title: Option<Option<String>>,
pub user_id: Option<Option<String>>,
pub commenter_email: Option<Option<String>>,
pub commenter_name: Option<String>,
pub commenter_link: Option<Option<String>>,
pub comment: Option<String>,
pub comment_html: Option<String>,
pub parent_id: Option<Option<String>>,
pub date: Option<Option<f64>>,
pub local_date_string: Option<Option<String>>,
pub local_date_hours: Option<Option<i32>>,
pub votes: Option<Option<i32>>,
pub votes_up: Option<Option<i32>>,
pub votes_down: Option<Option<i32>>,
pub expire_at: Option<Option<String>>,
pub verified: Option<bool>,
pub verified_date: Option<Option<String>>,
pub notification_sent_for_parent: Option<bool>,
pub notification_sent_for_parent_tenant: Option<bool>,
pub reviewed: Option<bool>,
pub external_id: Option<String>,
pub external_parent_id: Option<Option<String>>,
pub avatar_src: Option<Option<String>>,
pub is_spam: Option<bool>,
pub approved: Option<bool>,
pub is_deleted: Option<bool>,
pub is_deleted_user: Option<bool>,
pub is_by_admin: Option<bool>,
pub is_by_moderator: Option<bool>,
pub is_pinned: Option<Option<bool>>,
pub is_locked: Option<Option<bool>>,
pub flag_count: Option<Option<i32>>,
pub display_label: Option<Option<String>>,
pub meta: Option<Option<FCommentMeta>>,
pub moderation_group_ids: Option<Option<Vec<String>>>,
pub feedback_ids: Option<Vec<String>>,
}Fields§
§url_id: Option<String>§url_id_raw: Option<String>§url: Option<String>§page_title: Option<Option<String>>§user_id: Option<Option<String>>§commenter_email: Option<Option<String>>§commenter_name: Option<String>§commenter_link: Option<Option<String>>§comment: Option<String>§comment_html: Option<String>§parent_id: Option<Option<String>>§date: Option<Option<f64>>§local_date_string: Option<Option<String>>§local_date_hours: Option<Option<i32>>§votes: Option<Option<i32>>§votes_up: Option<Option<i32>>§votes_down: Option<Option<i32>>§expire_at: Option<Option<String>>§verified: Option<bool>§verified_date: Option<Option<String>>§notification_sent_for_parent: Option<bool>§notification_sent_for_parent_tenant: Option<bool>§reviewed: Option<bool>§external_id: Option<String>§external_parent_id: Option<Option<String>>§avatar_src: Option<Option<String>>§is_spam: Option<bool>§approved: Option<bool>§is_deleted: Option<bool>§is_deleted_user: Option<bool>§is_by_admin: Option<bool>§is_by_moderator: Option<bool>§is_pinned: Option<Option<bool>>§is_locked: Option<Option<bool>>§flag_count: Option<Option<i32>>§display_label: Option<Option<String>>§meta: Option<Option<FCommentMeta>>§moderation_group_ids: Option<Option<Vec<String>>>§feedback_ids: Option<Vec<String>>Implementations§
Source§impl UpdatableCommentParams
impl UpdatableCommentParams
pub fn new() -> UpdatableCommentParams
Trait Implementations§
Source§impl Clone for UpdatableCommentParams
impl Clone for UpdatableCommentParams
Source§fn clone(&self) -> UpdatableCommentParams
fn clone(&self) -> UpdatableCommentParams
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 UpdatableCommentParams
impl Debug for UpdatableCommentParams
Source§impl Default for UpdatableCommentParams
impl Default for UpdatableCommentParams
Source§fn default() -> UpdatableCommentParams
fn default() -> UpdatableCommentParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatableCommentParams
impl<'de> Deserialize<'de> for UpdatableCommentParams
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 UpdatableCommentParams
impl PartialEq for UpdatableCommentParams
Source§impl Serialize for UpdatableCommentParams
impl Serialize for UpdatableCommentParams
impl StructuralPartialEq for UpdatableCommentParams
Auto Trait Implementations§
impl Freeze for UpdatableCommentParams
impl RefUnwindSafe for UpdatableCommentParams
impl Send for UpdatableCommentParams
impl Sync for UpdatableCommentParams
impl Unpin for UpdatableCommentParams
impl UnwindSafe for UpdatableCommentParams
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