pub struct Compute {
pub cpu_kind: Option<String>,
pub cpus: Option<u32>,
pub gpu_kind: Option<String>,
pub gpus: Option<u32>,
pub host_dedication_id: Option<String>,
pub kernel_args: Option<Vec<String>>,
pub memory_mb: Option<u32>,
pub compute_image: Option<String>,
}Fields§
§cpu_kind: Option<String>§cpus: Option<u32>§gpu_kind: Option<String>§gpus: Option<u32>§host_dedication_id: Option<String>§kernel_args: Option<Vec<String>>§memory_mb: Option<u32>§compute_image: Option<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Compute
impl RefUnwindSafe for Compute
impl Send for Compute
impl Sync for Compute
impl Unpin for Compute
impl UnwindSafe for Compute
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