pub struct GetCommentsParams {Show 15 fields
pub tenant_id: String,
pub page: Option<i32>,
pub limit: Option<i32>,
pub skip: Option<i32>,
pub as_tree: Option<bool>,
pub skip_children: Option<i32>,
pub limit_children: Option<i32>,
pub max_tree_depth: Option<i32>,
pub url_id: Option<String>,
pub user_id: Option<String>,
pub anon_user_id: Option<String>,
pub context_user_id: Option<String>,
pub hash_tag: Option<String>,
pub parent_id: Option<String>,
pub direction: Option<SortDirections>,
}Expand description
struct for passing parameters to the method get_comments
Fields§
§tenant_id: String§page: Option<i32>§limit: Option<i32>§skip: Option<i32>§as_tree: Option<bool>§skip_children: Option<i32>§limit_children: Option<i32>§max_tree_depth: Option<i32>§url_id: Option<String>§user_id: Option<String>§anon_user_id: Option<String>§context_user_id: Option<String>§hash_tag: Option<String>§parent_id: Option<String>§direction: Option<SortDirections>Trait Implementations§
Source§impl Clone for GetCommentsParams
impl Clone for GetCommentsParams
Source§fn clone(&self) -> GetCommentsParams
fn clone(&self) -> GetCommentsParams
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 moreAuto Trait Implementations§
impl Freeze for GetCommentsParams
impl RefUnwindSafe for GetCommentsParams
impl Send for GetCommentsParams
impl Sync for GetCommentsParams
impl Unpin for GetCommentsParams
impl UnwindSafe for GetCommentsParams
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