pub struct ProcessorInfo {
pub supported_architectures: Option<Vec<String>>,
pub sustained_clock_speed_in_ghz: Option<f64>,
}Expand description
Describes the processor used by the instance type.
Fields§
§supported_architectures: Option<Vec<String>>A list of architectures supported by the instance type.
sustained_clock_speed_in_ghz: Option<f64>The speed of the processor, in GHz.
Trait Implementations§
Source§impl Clone for ProcessorInfo
impl Clone for ProcessorInfo
Source§fn clone(&self) -> ProcessorInfo
fn clone(&self) -> ProcessorInfo
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 ProcessorInfo
impl Debug for ProcessorInfo
Source§impl Default for ProcessorInfo
impl Default for ProcessorInfo
Source§fn default() -> ProcessorInfo
fn default() -> ProcessorInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProcessorInfo
impl PartialEq for ProcessorInfo
impl StructuralPartialEq for ProcessorInfo
Auto Trait Implementations§
impl Freeze for ProcessorInfo
impl RefUnwindSafe for ProcessorInfo
impl Send for ProcessorInfo
impl Sync for ProcessorInfo
impl Unpin for ProcessorInfo
impl UnwindSafe for ProcessorInfo
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