Struct aws_sdk_connect::model::UserSearchCriteria
source · [−]#[non_exhaustive]pub struct UserSearchCriteria {
pub or_conditions: Option<Vec<UserSearchCriteria>>,
pub and_conditions: Option<Vec<UserSearchCriteria>>,
pub string_condition: Option<StringCondition>,
pub hierarchy_group_condition: Option<HierarchyGroupCondition>,
}Expand description
The search criteria to be used to return users.
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.or_conditions: Option<Vec<UserSearchCriteria>>A list of conditions which would be applied together with an OR condition.
and_conditions: Option<Vec<UserSearchCriteria>>A list of conditions which would be applied together with an AND condition.
string_condition: Option<StringCondition>A leaf node condition which can be used to specify a string condition.
hierarchy_group_condition: Option<HierarchyGroupCondition>A leaf node condition which can be used to specify a hierarchy group condition.
Implementations
sourceimpl UserSearchCriteria
impl UserSearchCriteria
sourcepub fn or_conditions(&self) -> Option<&[UserSearchCriteria]>
pub fn or_conditions(&self) -> Option<&[UserSearchCriteria]>
A list of conditions which would be applied together with an OR condition.
sourcepub fn and_conditions(&self) -> Option<&[UserSearchCriteria]>
pub fn and_conditions(&self) -> Option<&[UserSearchCriteria]>
A list of conditions which would be applied together with an AND condition.
sourcepub fn string_condition(&self) -> Option<&StringCondition>
pub fn string_condition(&self) -> Option<&StringCondition>
A leaf node condition which can be used to specify a string condition.
sourcepub fn hierarchy_group_condition(&self) -> Option<&HierarchyGroupCondition>
pub fn hierarchy_group_condition(&self) -> Option<&HierarchyGroupCondition>
A leaf node condition which can be used to specify a hierarchy group condition.
sourceimpl UserSearchCriteria
impl UserSearchCriteria
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UserSearchCriteria
Trait Implementations
sourceimpl Clone for UserSearchCriteria
impl Clone for UserSearchCriteria
sourcefn clone(&self) -> UserSearchCriteria
fn clone(&self) -> UserSearchCriteria
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for UserSearchCriteria
impl Debug for UserSearchCriteria
sourceimpl PartialEq<UserSearchCriteria> for UserSearchCriteria
impl PartialEq<UserSearchCriteria> for UserSearchCriteria
sourcefn eq(&self, other: &UserSearchCriteria) -> bool
fn eq(&self, other: &UserSearchCriteria) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UserSearchCriteria) -> bool
fn ne(&self, other: &UserSearchCriteria) -> bool
This method tests for !=.
impl StructuralPartialEq for UserSearchCriteria
Auto Trait Implementations
impl RefUnwindSafe for UserSearchCriteria
impl Send for UserSearchCriteria
impl Sync for UserSearchCriteria
impl Unpin for UserSearchCriteria
impl UnwindSafe for UserSearchCriteria
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more