Struct fastly_api::apis::secret_store_api::GetSecretStoresParams
source · pub struct GetSecretStoresParams {
pub cursor: Option<String>,
pub limit: Option<String>,
}
Expand description
struct for passing parameters to the method get_secret_stores
Fields§
§cursor: Option<String>
Cursor value from a previous response to retrieve the next page. To request the first page, this should be empty.
limit: Option<String>
Number of results per page. The maximum is 200.
Trait Implementations§
source§impl Clone for GetSecretStoresParams
impl Clone for GetSecretStoresParams
source§fn clone(&self) -> GetSecretStoresParams
fn clone(&self) -> GetSecretStoresParams
Returns a copy of the value. Read more
1.0.0 · 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 GetSecretStoresParams
impl Debug for GetSecretStoresParams
source§impl Default for GetSecretStoresParams
impl Default for GetSecretStoresParams
source§fn default() -> GetSecretStoresParams
fn default() -> GetSecretStoresParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for GetSecretStoresParams
impl Send for GetSecretStoresParams
impl Sync for GetSecretStoresParams
impl Unpin for GetSecretStoresParams
impl UnwindSafe for GetSecretStoresParams
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