pub struct UserCommentSearchResponse {
pub total: Option<i64>,
pub user_comments: Option<Vec<UserComment>>,
}
Expand description
UserCommentSearchResponse : User comment search response
Fields§
§total: Option<i64>
§user_comments: Option<Vec<UserComment>>
Implementations§
Source§impl UserCommentSearchResponse
impl UserCommentSearchResponse
Sourcepub fn new() -> UserCommentSearchResponse
pub fn new() -> UserCommentSearchResponse
User comment search response
Trait Implementations§
Source§impl Clone for UserCommentSearchResponse
impl Clone for UserCommentSearchResponse
Source§fn clone(&self) -> UserCommentSearchResponse
fn clone(&self) -> UserCommentSearchResponse
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 UserCommentSearchResponse
impl Debug for UserCommentSearchResponse
Source§impl Default for UserCommentSearchResponse
impl Default for UserCommentSearchResponse
Source§fn default() -> UserCommentSearchResponse
fn default() -> UserCommentSearchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserCommentSearchResponse
impl<'de> Deserialize<'de> for UserCommentSearchResponse
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
impl StructuralPartialEq for UserCommentSearchResponse
Auto Trait Implementations§
impl Freeze for UserCommentSearchResponse
impl RefUnwindSafe for UserCommentSearchResponse
impl Send for UserCommentSearchResponse
impl Sync for UserCommentSearchResponse
impl Unpin for UserCommentSearchResponse
impl UnwindSafe for UserCommentSearchResponse
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