[][src]Struct rusoto_frauddetector::Variable

pub struct Variable {
    pub created_time: Option<String>,
    pub data_source: Option<String>,
    pub data_type: Option<String>,
    pub default_value: Option<String>,
    pub description: Option<String>,
    pub last_updated_time: Option<String>,
    pub name: Option<String>,
    pub variable_type: Option<String>,
}

The variable.

Fields

created_time: Option<String>

The time when the variable was created.

data_source: Option<String>

The data source of the variable.

data_type: Option<String>

The data type of the variable.

default_value: Option<String>

The default value of the variable.

description: Option<String>

The description of the variable.

last_updated_time: Option<String>

The time when variable was last updated.

name: Option<String>

The name of the variable.

variable_type: Option<String>

The variable type of the variable.

Trait Implementations

impl Clone for Variable[src]

impl Debug for Variable[src]

impl Default for Variable[src]

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

impl PartialEq<Variable> for Variable[src]

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