[][src]Struct rusoto_license_manager::Entitlement

pub struct Entitlement {
    pub allow_check_in: Option<bool>,
    pub max_count: Option<i64>,
    pub name: String,
    pub overage: Option<bool>,
    pub unit: String,
    pub value: Option<String>,
}

Describes a resource entitled for use with a license.

Fields

allow_check_in: Option<bool>

Indicates whether check-ins are allowed.

max_count: Option<i64>

Maximum entitlement count. Use if the unit is not None.

name: String

Entitlement name.

overage: Option<bool>

Indicates whether overages are allowed.

unit: String

Entitlement unit.

value: Option<String>

Entitlement resource. Use only if the unit is None.

Trait Implementations

impl Clone for Entitlement[src]

impl Debug for Entitlement[src]

impl Default for Entitlement[src]

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

impl PartialEq<Entitlement> for Entitlement[src]

impl Serialize for Entitlement[src]

impl StructuralPartialEq for Entitlement[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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.