pub struct DescribeElasticGpusResult {
pub elastic_gpu_set: Option<Vec<ElasticGpus>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§elastic_gpu_set: Option<Vec<ElasticGpus>>Information about the Elastic Graphics accelerators.
max_results: Option<i64>The total number of items to return. If the total number of items available is more than the value specified in max-items then a Next-Token will be provided in the output that you can use to resume pagination.
next_token: Option<String>The token to use to retrieve the next page of results. This value is null when there are no more results to return.
Trait Implementations§
Source§impl Clone for DescribeElasticGpusResult
impl Clone for DescribeElasticGpusResult
Source§fn clone(&self) -> DescribeElasticGpusResult
fn clone(&self) -> DescribeElasticGpusResult
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 Debug for DescribeElasticGpusResult
impl Debug for DescribeElasticGpusResult
Source§impl Default for DescribeElasticGpusResult
impl Default for DescribeElasticGpusResult
Source§fn default() -> DescribeElasticGpusResult
fn default() -> DescribeElasticGpusResult
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeElasticGpusResult
Auto Trait Implementations§
impl Freeze for DescribeElasticGpusResult
impl RefUnwindSafe for DescribeElasticGpusResult
impl Send for DescribeElasticGpusResult
impl Sync for DescribeElasticGpusResult
impl Unpin for DescribeElasticGpusResult
impl UnwindSafe for DescribeElasticGpusResult
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