#[non_exhaustive]pub struct HoursOfOperationSearchCriteria {
pub or_conditions: Option<Vec<HoursOfOperationSearchCriteria>>,
pub and_conditions: Option<Vec<HoursOfOperationSearchCriteria>>,
pub string_condition: Option<StringCondition>,
}Expand description
The search criteria to be used to return hours of operations.
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<HoursOfOperationSearchCriteria>>A list of conditions which would be applied together with an OR condition.
and_conditions: Option<Vec<HoursOfOperationSearchCriteria>>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.
The currently supported values for FieldName are name, description, timezone, and resourceID.
Implementations§
source§impl HoursOfOperationSearchCriteria
impl HoursOfOperationSearchCriteria
sourcepub fn or_conditions(&self) -> &[HoursOfOperationSearchCriteria]
pub fn or_conditions(&self) -> &[HoursOfOperationSearchCriteria]
A list of conditions which would be applied together with an OR condition.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .or_conditions.is_none().
sourcepub fn and_conditions(&self) -> &[HoursOfOperationSearchCriteria]
pub fn and_conditions(&self) -> &[HoursOfOperationSearchCriteria]
A list of conditions which would be applied together with an AND condition.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .and_conditions.is_none().
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.
The currently supported values for FieldName are name, description, timezone, and resourceID.
source§impl HoursOfOperationSearchCriteria
impl HoursOfOperationSearchCriteria
sourcepub fn builder() -> HoursOfOperationSearchCriteriaBuilder
pub fn builder() -> HoursOfOperationSearchCriteriaBuilder
Creates a new builder-style object to manufacture HoursOfOperationSearchCriteria.
Trait Implementations§
source§impl Clone for HoursOfOperationSearchCriteria
impl Clone for HoursOfOperationSearchCriteria
source§fn clone(&self) -> HoursOfOperationSearchCriteria
fn clone(&self) -> HoursOfOperationSearchCriteria
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for HoursOfOperationSearchCriteria
impl PartialEq for HoursOfOperationSearchCriteria
source§fn eq(&self, other: &HoursOfOperationSearchCriteria) -> bool
fn eq(&self, other: &HoursOfOperationSearchCriteria) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for HoursOfOperationSearchCriteria
Auto Trait Implementations§
impl Freeze for HoursOfOperationSearchCriteria
impl RefUnwindSafe for HoursOfOperationSearchCriteria
impl Send for HoursOfOperationSearchCriteria
impl Sync for HoursOfOperationSearchCriteria
impl Unpin for HoursOfOperationSearchCriteria
impl UnwindSafe for HoursOfOperationSearchCriteria
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more