Struct aws_sdk_appflow::types::FieldTypeDetails
source · #[non_exhaustive]pub struct FieldTypeDetails { /* private fields */ }Expand description
Contains details regarding the supported field type and the operators that can be applied for filtering.
Implementations§
source§impl FieldTypeDetails
impl FieldTypeDetails
sourcepub fn field_type(&self) -> Option<&str>
pub fn field_type(&self) -> Option<&str>
The type of field, such as string, integer, date, and so on.
sourcepub fn filter_operators(&self) -> Option<&[Operator]>
pub fn filter_operators(&self) -> Option<&[Operator]>
The list of operators supported by a field.
sourcepub fn supported_values(&self) -> Option<&[String]>
pub fn supported_values(&self) -> Option<&[String]>
The list of values that a field can contain. For example, a Boolean fieldType can have two values: "true" and "false".
sourcepub fn value_regex_pattern(&self) -> Option<&str>
pub fn value_regex_pattern(&self) -> Option<&str>
The regular expression pattern for the field name.
sourcepub fn supported_date_format(&self) -> Option<&str>
pub fn supported_date_format(&self) -> Option<&str>
The date format that the field supports.
sourcepub fn field_value_range(&self) -> Option<&Range>
pub fn field_value_range(&self) -> Option<&Range>
The range of values this field can hold.
sourcepub fn field_length_range(&self) -> Option<&Range>
pub fn field_length_range(&self) -> Option<&Range>
This is the allowable length range for this field's value.
source§impl FieldTypeDetails
impl FieldTypeDetails
sourcepub fn builder() -> FieldTypeDetailsBuilder
pub fn builder() -> FieldTypeDetailsBuilder
Creates a new builder-style object to manufacture FieldTypeDetails.
Trait Implementations§
source§impl Clone for FieldTypeDetails
impl Clone for FieldTypeDetails
source§fn clone(&self) -> FieldTypeDetails
fn clone(&self) -> FieldTypeDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for FieldTypeDetails
impl Debug for FieldTypeDetails
source§impl PartialEq<FieldTypeDetails> for FieldTypeDetails
impl PartialEq<FieldTypeDetails> for FieldTypeDetails
source§fn eq(&self, other: &FieldTypeDetails) -> bool
fn eq(&self, other: &FieldTypeDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FieldTypeDetails
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more