[][src]Struct rusoto_servicecatalog::ExecutionParameter

pub struct ExecutionParameter {
    pub default_values: Option<Vec<String>>,
    pub name: Option<String>,
    pub type_: Option<String>,
}

Details of an execution parameter value that is passed to a self-service action when executed on a provisioned product.

Fields

default_values: Option<Vec<String>>

The default values for the execution parameter.

name: Option<String>

The name of the execution parameter.

type_: Option<String>

The execution parameter type.

Trait Implementations

impl Clone for ExecutionParameter[src]

impl Debug for ExecutionParameter[src]

impl Default for ExecutionParameter[src]

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

impl PartialEq<ExecutionParameter> for ExecutionParameter[src]

impl StructuralPartialEq for ExecutionParameter[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> 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.