Struct square_api_client::models::CatalogQueryRange
source · 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
sourceimpl Clone for CatalogQueryRange
impl Clone for CatalogQueryRange
sourcefn clone(&self) -> CatalogQueryRange
fn clone(&self) -> CatalogQueryRange
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 moresourceimpl Debug for CatalogQueryRange
impl Debug for CatalogQueryRange
sourceimpl Default for CatalogQueryRange
impl Default for CatalogQueryRange
sourcefn default() -> CatalogQueryRange
fn default() -> CatalogQueryRange
Returns the “default value” for a type. Read more
sourceimpl PartialEq<CatalogQueryRange> for CatalogQueryRange
impl PartialEq<CatalogQueryRange> for CatalogQueryRange
sourcefn eq(&self, other: &CatalogQueryRange) -> bool
fn eq(&self, other: &CatalogQueryRange) -> bool
sourceimpl Serialize for CatalogQueryRange
impl Serialize for CatalogQueryRange
impl Eq for CatalogQueryRange
impl StructuralEq for CatalogQueryRange
impl StructuralPartialEq for CatalogQueryRange
Auto Trait Implementations
impl RefUnwindSafe for CatalogQueryRange
impl Send for CatalogQueryRange
impl Sync for CatalogQueryRange
impl Unpin for CatalogQueryRange
impl UnwindSafe for CatalogQueryRange
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.