pub struct GetFeedPostsParams {
pub tenant_id: String,
pub after_id: Option<String>,
pub limit: Option<i32>,
pub tags: Option<Vec<String>>,
}Expand description
struct for passing parameters to the method get_feed_posts
Fields§
§tenant_id: String§after_id: Option<String>§limit: Option<i32>Trait Implementations§
Source§impl Clone for GetFeedPostsParams
impl Clone for GetFeedPostsParams
Source§fn clone(&self) -> GetFeedPostsParams
fn clone(&self) -> GetFeedPostsParams
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 GetFeedPostsParams
impl RefUnwindSafe for GetFeedPostsParams
impl Send for GetFeedPostsParams
impl Sync for GetFeedPostsParams
impl Unpin for GetFeedPostsParams
impl UnwindSafe for GetFeedPostsParams
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