pub struct InstanceTypeOffering {
pub instance_type: Option<String>,
pub location: Option<String>,
pub location_type: Option<String>,
}Expand description
The instance types offered.
Fields§
§instance_type: Option<String>The instance type. For more information, see Instance Types in the Amazon Elastic Compute Cloud User Guide.
location: Option<String>The identifier for the location. This depends on the location type. For example, if the location type is region, the location is the Region code (for example, us-east-2.)
location_type: Option<String>The location type.
Trait Implementations§
Source§impl Clone for InstanceTypeOffering
impl Clone for InstanceTypeOffering
Source§fn clone(&self) -> InstanceTypeOffering
fn clone(&self) -> InstanceTypeOffering
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 InstanceTypeOffering
impl Debug for InstanceTypeOffering
Source§impl Default for InstanceTypeOffering
impl Default for InstanceTypeOffering
Source§fn default() -> InstanceTypeOffering
fn default() -> InstanceTypeOffering
Returns the “default value” for a type. Read more
Source§impl PartialEq for InstanceTypeOffering
impl PartialEq for InstanceTypeOffering
impl StructuralPartialEq for InstanceTypeOffering
Auto Trait Implementations§
impl Freeze for InstanceTypeOffering
impl RefUnwindSafe for InstanceTypeOffering
impl Send for InstanceTypeOffering
impl Sync for InstanceTypeOffering
impl Unpin for InstanceTypeOffering
impl UnwindSafe for InstanceTypeOffering
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