pub struct GetBlogPostsByBlogIdParams {
pub location_id: String,
pub blog_id: String,
pub limit: f64,
pub offset: f64,
pub search_term: Option<String>,
pub status: Option<String>,
}Available on crate feature
blogs only.Expand description
Query parameters for BlogsService::get_blog_posts_by_blog_id.
Fields§
§location_id: StringlocationId query parameter.
Required by the API.
blog_id: StringblogId query parameter.
Required by the API.
limit: f64limit query parameter.
Required by the API.
offset: f64offset query parameter.
Required by the API.
search_term: Option<String>search for any post by name
status: Option<String>status query parameter.
Allowed values: PUBLISHED, SCHEDULED, ARCHIVED, DRAFT.
Implementations§
Trait Implementations§
Source§impl Clone for GetBlogPostsByBlogIdParams
impl Clone for GetBlogPostsByBlogIdParams
Source§fn clone(&self) -> GetBlogPostsByBlogIdParams
fn clone(&self) -> GetBlogPostsByBlogIdParams
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 GetBlogPostsByBlogIdParams
impl Debug for GetBlogPostsByBlogIdParams
Source§impl Default for GetBlogPostsByBlogIdParams
impl Default for GetBlogPostsByBlogIdParams
Source§fn default() -> GetBlogPostsByBlogIdParams
fn default() -> GetBlogPostsByBlogIdParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetBlogPostsByBlogIdParams
impl RefUnwindSafe for GetBlogPostsByBlogIdParams
impl Send for GetBlogPostsByBlogIdParams
impl Sync for GetBlogPostsByBlogIdParams
impl Unpin for GetBlogPostsByBlogIdParams
impl UnsafeUnpin for GetBlogPostsByBlogIdParams
impl UnwindSafe for GetBlogPostsByBlogIdParams
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