pub struct CatalogQueryExact {
pub attribute_name: String,
pub attribute_value: String,
}
Expand description
The query filter to return the search result by exact match of the specified attribute name and value.
Fields§
§attribute_name: String
The name of the attribute to be searched. Matching of the attribute name is exact.
Min Length 1
attribute_value: String
The desired value of the search attribute. Matching of the attribute value is case insensitive and can be partial. For example, if a specified value of “sma”, objects with the named attribute value of “Small”, “small” are both matched.
Trait Implementations§
Source§impl Clone for CatalogQueryExact
impl Clone for CatalogQueryExact
Source§fn clone(&self) -> CatalogQueryExact
fn clone(&self) -> CatalogQueryExact
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 CatalogQueryExact
impl Debug for CatalogQueryExact
Source§impl Default for CatalogQueryExact
impl Default for CatalogQueryExact
Source§fn default() -> CatalogQueryExact
fn default() -> CatalogQueryExact
Returns the “default value” for a type. Read more
Source§impl PartialEq for CatalogQueryExact
impl PartialEq for CatalogQueryExact
Source§impl Serialize for CatalogQueryExact
impl Serialize for CatalogQueryExact
impl Eq for CatalogQueryExact
impl StructuralPartialEq for CatalogQueryExact
Auto Trait Implementations§
impl Freeze for CatalogQueryExact
impl RefUnwindSafe for CatalogQueryExact
impl Send for CatalogQueryExact
impl Sync for CatalogQueryExact
impl Unpin for CatalogQueryExact
impl UnwindSafe for CatalogQueryExact
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.