Struct aws_sdk_appflow::model::FieldTypeDetails
source · [−]#[non_exhaustive]pub struct FieldTypeDetails {
pub field_type: Option<String>,
pub filter_operators: Option<Vec<Operator>>,
pub supported_values: Option<Vec<String>>,
}
Expand description
Contains details regarding the supported field type and the operators that can be applied for filtering.
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.field_type: Option<String>
The type of field, such as string, integer, date, and so on.
filter_operators: Option<Vec<Operator>>
The list of operators supported by a field.
supported_values: Option<Vec<String>>
The list of values that a field can contain. For example, a Boolean fieldType
can have two values: "true" and "false".
Implementations
The type of field, such as string, integer, date, and so on.
The list of operators supported by a field.
Creates a new builder-style object to manufacture FieldTypeDetails
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 FieldTypeDetails
impl Send for FieldTypeDetails
impl Sync for FieldTypeDetails
impl Unpin for FieldTypeDetails
impl UnwindSafe for FieldTypeDetails
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