pub struct GetBlogPostsParams {
pub location_id: String,
pub limit: Option<u32>,
pub offset: Option<u32>,
pub search_term: Option<String>,
}Fields§
§location_id: String§limit: Option<u32>§offset: Option<u32>§search_term: Option<String>Trait Implementations§
Source§impl Clone for GetBlogPostsParams
impl Clone for GetBlogPostsParams
Source§fn clone(&self) -> GetBlogPostsParams
fn clone(&self) -> GetBlogPostsParams
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 GetBlogPostsParams
impl Debug for GetBlogPostsParams
Source§impl Default for GetBlogPostsParams
impl Default for GetBlogPostsParams
Source§fn default() -> GetBlogPostsParams
fn default() -> GetBlogPostsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBlogPostsParams
impl<'de> Deserialize<'de> for GetBlogPostsParams
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
Auto Trait Implementations§
impl Freeze for GetBlogPostsParams
impl RefUnwindSafe for GetBlogPostsParams
impl Send for GetBlogPostsParams
impl Sync for GetBlogPostsParams
impl Unpin for GetBlogPostsParams
impl UnsafeUnpin for GetBlogPostsParams
impl UnwindSafe for GetBlogPostsParams
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