[][src]Struct rusoto_frauddetector::VariableEntry

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

The variable entry in a list.

Fields

data_source: Option<String>

The data source of the variable entry.

data_type: Option<String>

The data type of the variable entry.

default_value: Option<String>

The default value of the variable entry.

description: Option<String>

The description of the variable entry.

name: Option<String>

The name of the variable entry.

variable_type: Option<String>

The type of the variable entry.

Trait Implementations

impl Clone for VariableEntry[src]

impl Debug for VariableEntry[src]

impl Default for VariableEntry[src]

impl PartialEq<VariableEntry> for VariableEntry[src]

impl Serialize for VariableEntry[src]

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