[][src]Struct rusoto_rds_data::ResultSetOptions

pub struct ResultSetOptions {
    pub decimal_return_type: Option<String>,
}

Options that control how the result set is returned.

Fields

decimal_return_type: Option<String>

A value that indicates how a field of DECIMAL type is represented in the response. The value of STRING, the default, specifies that it is converted to a String value. The value of DOUBLEORLONG specifies that it is converted to a Long value if its scale is 0, or to a Double value otherwise.

Conversion to Double or Long can result in roundoff errors due to precision loss. We recommend converting to String, especially when working with currency values.

Trait Implementations

impl Clone for ResultSetOptions[src]

impl Debug for ResultSetOptions[src]

impl Default for ResultSetOptions[src]

impl PartialEq<ResultSetOptions> for ResultSetOptions[src]

impl Serialize for ResultSetOptions[src]

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