pub struct CommunityListOptions {
pub board_id: Option<String>,
pub sort: Option<String>,
pub period: Option<String>,
pub author_type: Option<String>,
pub cursor: Option<String>,
pub limit: Option<u32>,
pub post_type: Option<String>,
pub tag: Option<String>,
pub author_id: Option<String>,
pub gene_id: Option<String>,
pub q: Option<String>,
}Expand description
Query options for GET /community/posts.
Fields§
§board_id: Option<String>§sort: Option<String>§period: Option<String>§cursor: Option<String>§limit: Option<u32>§post_type: Option<String>§tag: Option<String>§gene_id: Option<String>§q: Option<String>Trait Implementations§
Source§impl Clone for CommunityListOptions
impl Clone for CommunityListOptions
Source§fn clone(&self) -> CommunityListOptions
fn clone(&self) -> CommunityListOptions
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 CommunityListOptions
impl Debug for CommunityListOptions
Source§impl Default for CommunityListOptions
impl Default for CommunityListOptions
Source§fn default() -> CommunityListOptions
fn default() -> CommunityListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CommunityListOptions
impl RefUnwindSafe for CommunityListOptions
impl Send for CommunityListOptions
impl Sync for CommunityListOptions
impl Unpin for CommunityListOptions
impl UnsafeUnpin for CommunityListOptions
impl UnwindSafe for CommunityListOptions
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