pub struct ScanCommentRequest<'a> {
pub app_id: &'a str,
pub my_user_name: &'a str,
pub my_role_type: i32,
pub qr_content: &'a str,
pub object_id: i64,
pub comment_content: &'a str,
pub reply_username: Option<&'a str>,
pub ref_comment_id: Option<i64>,
pub root_comment_id: Option<i64>,
}Fields§
§app_id: &'a str§my_user_name: &'a str§my_role_type: i32§qr_content: &'a str§object_id: i64§comment_content: &'a str§reply_username: Option<&'a str>§ref_comment_id: Option<i64>§root_comment_id: Option<i64>Trait Implementations§
Source§impl<'a> Clone for ScanCommentRequest<'a>
impl<'a> Clone for ScanCommentRequest<'a>
Source§fn clone(&self) -> ScanCommentRequest<'a>
fn clone(&self) -> ScanCommentRequest<'a>
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<'a> Debug for ScanCommentRequest<'a>
impl<'a> Debug for ScanCommentRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for ScanCommentRequest<'a>
impl<'a> RefUnwindSafe for ScanCommentRequest<'a>
impl<'a> Send for ScanCommentRequest<'a>
impl<'a> Sync for ScanCommentRequest<'a>
impl<'a> Unpin for ScanCommentRequest<'a>
impl<'a> UnwindSafe for ScanCommentRequest<'a>
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