Struct aws_sdk_rdsdata::model::ResultSetOptions [−][src]
#[non_exhaustive]pub struct ResultSetOptions {
pub decimal_return_type: Option<DecimalReturnType>,
}Expand description
Options that control how the result set is returned.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.decimal_return_type: Option<DecimalReturnType>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 DOUBLE_OR_LONG
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.
Implementations
Creates a new builder-style object to manufacture ResultSetOptions
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ResultSetOptions
impl Send for ResultSetOptions
impl Sync for ResultSetOptions
impl Unpin for ResultSetOptions
impl UnwindSafe for ResultSetOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more