pub struct HardwareSpec {
pub min_cpu_cores: Option<usize>,
pub min_ram_gb: Option<usize>,
pub gpu: Option<GpuRequirement>,
pub estimated_duration_secs: Option<u64>,
}Expand description
Hardware requirements.
Fields§
§min_cpu_cores: Option<usize>Minimum CPU cores.
min_ram_gb: Option<usize>Minimum RAM in GB.
gpu: Option<GpuRequirement>GPU requirements.
estimated_duration_secs: Option<u64>Estimated training time in seconds.
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 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