pub struct CatalogQueryRange {
pub attribute_name: String,
pub attribute_min_value: Option<i64>,
pub attribute_max_value: Option<i64>,
}
Expand description
The query filter to return the search result whose named attribute values fall between the specified range.
Fields§
§attribute_name: String
The name of the attribute to be searched.
Min Length 1
attribute_min_value: Option<i64>
The desired minimum value for the search attribute (inclusive).
attribute_max_value: Option<i64>
The desired maximum value for the search attribute (inclusive).
Trait Implementations§
Source§impl Clone for CatalogQueryRange
impl Clone for CatalogQueryRange
Source§fn clone(&self) -> CatalogQueryRange
fn clone(&self) -> CatalogQueryRange
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CatalogQueryRange
impl Debug for CatalogQueryRange
Source§impl Default for CatalogQueryRange
impl Default for CatalogQueryRange
Source§fn default() -> CatalogQueryRange
fn default() -> CatalogQueryRange
Returns the “default value” for a type. Read more
Source§impl PartialEq for CatalogQueryRange
impl PartialEq for CatalogQueryRange
Source§impl Serialize for CatalogQueryRange
impl Serialize for CatalogQueryRange
impl Eq for CatalogQueryRange
impl StructuralPartialEq for CatalogQueryRange
Auto Trait Implementations§
impl Freeze for CatalogQueryRange
impl RefUnwindSafe for CatalogQueryRange
impl Send for CatalogQueryRange
impl Sync for CatalogQueryRange
impl Unpin for CatalogQueryRange
impl UnwindSafe for CatalogQueryRange
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.