Struct gapi_grpc::google::cloud::lifesciences::v2beta::Accelerator[][src]

pub struct Accelerator {
    pub type: String,
    pub count: i64,
}

Carries information about an accelerator that can be attached to a VM.

Fields

type: String

The accelerator type string (for example, “nvidia-tesla-k80”).

Only NVIDIA GPU accelerators are currently supported. If an NVIDIA GPU is attached, the required runtime libraries will be made available to all containers under /usr/local/nvidia. The driver version to install must be specified using the NVIDIA driver version parameter on the virtual machine specification. Note that attaching a GPU increases the worker VM startup time by a few minutes.

count: i64

How many accelerators of this type to attach.

Trait Implementations

impl Clone for Accelerator[src]

impl Debug for Accelerator[src]

impl Default for Accelerator[src]

impl Message for Accelerator[src]

impl PartialEq<Accelerator> for Accelerator[src]

impl StructuralPartialEq for Accelerator[src]

Auto Trait Implementations

impl RefUnwindSafe for Accelerator

impl Send for Accelerator

impl Sync for Accelerator

impl Unpin for Accelerator

impl UnwindSafe for Accelerator

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]