Struct google_compute1::api::FixedOrPercent[][src]

pub struct FixedOrPercent {
    pub calculated: Option<i32>,
    pub fixed: Option<i32>,
    pub percent: Option<i32>,
}

Encapsulates numeric value that can be either absolute or relative.

This type is not used in any activity, and only used as part of another schema.

Fields

calculated: Option<i32>

[Output Only] Absolute value of VM instances calculated based on the specific mode.

fixed: Option<i32>

Specifies a fixed number of VM instances. This must be a positive integer.

percent: Option<i32>

Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%.

Trait Implementations

impl Clone for FixedOrPercent[src]

impl Debug for FixedOrPercent[src]

impl Default for FixedOrPercent[src]

impl<'de> Deserialize<'de> for FixedOrPercent[src]

impl Part for FixedOrPercent[src]

impl Serialize for FixedOrPercent[src]

Auto Trait Implementations

impl RefUnwindSafe for FixedOrPercent[src]

impl Send for FixedOrPercent[src]

impl Sync for FixedOrPercent[src]

impl Unpin for FixedOrPercent[src]

impl UnwindSafe for FixedOrPercent[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.