pub struct HardwareSpec {
pub gpu: Option<GpuSpec>,
pub cpu_cores: Option<u32>,
pub ram_gb: Option<f64>,
pub disk_gb: Option<f64>,
}Fields§
§gpu: Option<GpuSpec>§cpu_cores: Option<u32>§ram_gb: Option<f64>§disk_gb: Option<f64>Implementations§
Source§impl HardwareSpec
impl HardwareSpec
Sourcepub fn check_against(
&self,
detected: &DetectedHardware,
) -> Vec<HardwareMismatch>
pub fn check_against( &self, detected: &DetectedHardware, ) -> Vec<HardwareMismatch>
Check this manifest’s requirements against the host’s detected hardware. Returns every requirement that is not satisfied.
Trait Implementations§
Source§impl Clone for HardwareSpec
impl Clone for HardwareSpec
Source§fn clone(&self) -> HardwareSpec
fn clone(&self) -> HardwareSpec
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 HardwareSpec
impl Debug for HardwareSpec
Source§impl<'de> Deserialize<'de> for HardwareSpec
impl<'de> Deserialize<'de> for HardwareSpec
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HardwareSpec
impl RefUnwindSafe for HardwareSpec
impl Send for HardwareSpec
impl Sync for HardwareSpec
impl Unpin for HardwareSpec
impl UnsafeUnpin for HardwareSpec
impl UnwindSafe for HardwareSpec
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