pub struct ListProvisioningTemplateVersionsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub template_name: String,
}Fields§
§max_results: Option<i64>The maximum number of results to return at one time.
next_token: Option<String>A token to retrieve the next set of results.
template_name: StringThe name of the fleet provisioning template.
Trait Implementations§
Source§impl Clone for ListProvisioningTemplateVersionsRequest
impl Clone for ListProvisioningTemplateVersionsRequest
Source§fn clone(&self) -> ListProvisioningTemplateVersionsRequest
fn clone(&self) -> ListProvisioningTemplateVersionsRequest
Returns a duplicate 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 Default for ListProvisioningTemplateVersionsRequest
impl Default for ListProvisioningTemplateVersionsRequest
Source§fn default() -> ListProvisioningTemplateVersionsRequest
fn default() -> ListProvisioningTemplateVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProvisioningTemplateVersionsRequest
impl PartialEq for ListProvisioningTemplateVersionsRequest
Source§fn eq(&self, other: &ListProvisioningTemplateVersionsRequest) -> bool
fn eq(&self, other: &ListProvisioningTemplateVersionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListProvisioningTemplateVersionsRequest
Auto Trait Implementations§
impl Freeze for ListProvisioningTemplateVersionsRequest
impl RefUnwindSafe for ListProvisioningTemplateVersionsRequest
impl Send for ListProvisioningTemplateVersionsRequest
impl Sync for ListProvisioningTemplateVersionsRequest
impl Unpin for ListProvisioningTemplateVersionsRequest
impl UnwindSafe for ListProvisioningTemplateVersionsRequest
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