pub struct UserCommentSearchCriteria {
pub comment: Option<String>,
pub commenter_id: Option<Uuid>,
pub tenant_id: Option<Uuid>,
pub user_id: Option<Uuid>,
pub number_of_results: Option<i32>,
pub order_by: Option<String>,
pub start_row: Option<i32>,
}
Expand description
UserCommentSearchCriteria : Search criteria for user comments.
Fields§
§comment: Option<String>
§commenter_id: Option<Uuid>
§tenant_id: Option<Uuid>
§user_id: Option<Uuid>
§number_of_results: Option<i32>
§order_by: Option<String>
§start_row: Option<i32>
Implementations§
Source§impl UserCommentSearchCriteria
impl UserCommentSearchCriteria
Sourcepub fn new() -> UserCommentSearchCriteria
pub fn new() -> UserCommentSearchCriteria
Search criteria for user comments.
Trait Implementations§
Source§impl Clone for UserCommentSearchCriteria
impl Clone for UserCommentSearchCriteria
Source§fn clone(&self) -> UserCommentSearchCriteria
fn clone(&self) -> UserCommentSearchCriteria
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 UserCommentSearchCriteria
impl Debug for UserCommentSearchCriteria
Source§impl Default for UserCommentSearchCriteria
impl Default for UserCommentSearchCriteria
Source§fn default() -> UserCommentSearchCriteria
fn default() -> UserCommentSearchCriteria
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserCommentSearchCriteria
impl<'de> Deserialize<'de> for UserCommentSearchCriteria
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 UserCommentSearchCriteria
Auto Trait Implementations§
impl Freeze for UserCommentSearchCriteria
impl RefUnwindSafe for UserCommentSearchCriteria
impl Send for UserCommentSearchCriteria
impl Sync for UserCommentSearchCriteria
impl Unpin for UserCommentSearchCriteria
impl UnwindSafe for UserCommentSearchCriteria
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