pub struct ElasticGpuAssociation {
pub elastic_gpu_association_id: Option<String>,
pub elastic_gpu_association_state: Option<String>,
pub elastic_gpu_association_time: Option<String>,
pub elastic_gpu_id: Option<String>,
}Expand description
Describes the association between an instance and an Elastic Graphics accelerator.
Fields§
§elastic_gpu_association_id: Option<String>The ID of the association.
elastic_gpu_association_state: Option<String>The state of the association between the instance and the Elastic Graphics accelerator.
elastic_gpu_association_time: Option<String>The time the Elastic Graphics accelerator was associated with the instance.
elastic_gpu_id: Option<String>The ID of the Elastic Graphics accelerator.
Trait Implementations§
Source§impl Clone for ElasticGpuAssociation
impl Clone for ElasticGpuAssociation
Source§fn clone(&self) -> ElasticGpuAssociation
fn clone(&self) -> ElasticGpuAssociation
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 ElasticGpuAssociation
impl Debug for ElasticGpuAssociation
Source§impl Default for ElasticGpuAssociation
impl Default for ElasticGpuAssociation
Source§fn default() -> ElasticGpuAssociation
fn default() -> ElasticGpuAssociation
Returns the “default value” for a type. Read more
Source§impl PartialEq for ElasticGpuAssociation
impl PartialEq for ElasticGpuAssociation
impl StructuralPartialEq for ElasticGpuAssociation
Auto Trait Implementations§
impl Freeze for ElasticGpuAssociation
impl RefUnwindSafe for ElasticGpuAssociation
impl Send for ElasticGpuAssociation
impl Sync for ElasticGpuAssociation
impl Unpin for ElasticGpuAssociation
impl UnwindSafe for ElasticGpuAssociation
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