pub struct ListPublicBlogPostsParams {
pub tag: Option<String>,
pub q: Option<String>,
pub page: Option<i64>,
pub limit: Option<i64>,
}Expand description
Query and header parameters for listPublicBlogPosts.
Fields§
§tag: Option<String>Exact tag match, case-insensitive.
q: Option<String>Free-text search across title, body and tags.
page: Option<i64>§limit: Option<i64>Trait Implementations§
Source§impl Clone for ListPublicBlogPostsParams
impl Clone for ListPublicBlogPostsParams
Source§fn clone(&self) -> ListPublicBlogPostsParams
fn clone(&self) -> ListPublicBlogPostsParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListPublicBlogPostsParams
impl Debug for ListPublicBlogPostsParams
Source§impl Default for ListPublicBlogPostsParams
impl Default for ListPublicBlogPostsParams
Source§fn default() -> ListPublicBlogPostsParams
fn default() -> ListPublicBlogPostsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPublicBlogPostsParams
impl<'de> Deserialize<'de> for ListPublicBlogPostsParams
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 ListPublicBlogPostsParams
Auto Trait Implementations§
impl Freeze for ListPublicBlogPostsParams
impl RefUnwindSafe for ListPublicBlogPostsParams
impl Send for ListPublicBlogPostsParams
impl Sync for ListPublicBlogPostsParams
impl Unpin for ListPublicBlogPostsParams
impl UnsafeUnpin for ListPublicBlogPostsParams
impl UnwindSafe for ListPublicBlogPostsParams
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