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