Struct fastly_api::apis::secret_store_item_api::GetSecretsParams
source · pub struct GetSecretsParams {
pub store_id: String,
pub cursor: Option<String>,
pub limit: Option<String>,
}
Expand description
struct for passing parameters to the method get_secrets
Fields§
§store_id: String
§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 GetSecretsParams
impl Clone for GetSecretsParams
source§fn clone(&self) -> GetSecretsParams
fn clone(&self) -> GetSecretsParams
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 GetSecretsParams
impl Debug for GetSecretsParams
source§impl Default for GetSecretsParams
impl Default for GetSecretsParams
source§fn default() -> GetSecretsParams
fn default() -> GetSecretsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for GetSecretsParams
impl Send for GetSecretsParams
impl Sync for GetSecretsParams
impl Unpin for GetSecretsParams
impl UnwindSafe for GetSecretsParams
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