pub struct CspListHeaderEventsParams {
pub page_id: String,
pub limit: Option<i32>,
pub page: Option<i32>,
}Expand description
struct for passing parameters to the method csp_list_header_events
Fields§
§page_id: StringPage identifier
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 CspListHeaderEventsParams
impl Clone for CspListHeaderEventsParams
Source§fn clone(&self) -> CspListHeaderEventsParams
fn clone(&self) -> CspListHeaderEventsParams
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 CspListHeaderEventsParams
impl Debug for CspListHeaderEventsParams
Source§impl Default for CspListHeaderEventsParams
impl Default for CspListHeaderEventsParams
Source§fn default() -> CspListHeaderEventsParams
fn default() -> CspListHeaderEventsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CspListHeaderEventsParams
impl RefUnwindSafe for CspListHeaderEventsParams
impl Send for CspListHeaderEventsParams
impl Sync for CspListHeaderEventsParams
impl Unpin for CspListHeaderEventsParams
impl UnsafeUnpin for CspListHeaderEventsParams
impl UnwindSafe for CspListHeaderEventsParams
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