pub struct CspListPagesParams {
pub website_id: Option<String>,
pub limit: Option<i32>,
pub page: Option<i32>,
}Expand description
struct for passing parameters to the method csp_list_pages
Fields§
§website_id: Option<String>Filter pages by website ID
limit: Option<i32>Limit how many results are returned.
page: Option<i32>Page number of the collection to request.
Trait Implementations§
Source§impl Clone for CspListPagesParams
impl Clone for CspListPagesParams
Source§fn clone(&self) -> CspListPagesParams
fn clone(&self) -> CspListPagesParams
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 CspListPagesParams
impl Debug for CspListPagesParams
Source§impl Default for CspListPagesParams
impl Default for CspListPagesParams
Source§fn default() -> CspListPagesParams
fn default() -> CspListPagesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CspListPagesParams
impl RefUnwindSafe for CspListPagesParams
impl Send for CspListPagesParams
impl Sync for CspListPagesParams
impl Unpin for CspListPagesParams
impl UnsafeUnpin for CspListPagesParams
impl UnwindSafe for CspListPagesParams
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