pub struct TagQuery<'a> {
pub prefix: Option<&'a str>,
pub cursor: Option<&'a str>,
pub limit: usize,
}Expand description
A bounded tag-catalog query.
Fields§
§prefix: Option<&'a str>Optional exact, case-sensitive prefix.
cursor: Option<&'a str>Opaque cursor returned by the previous page.
limit: usizePage size; 0 selects DEFAULT_TAG_PAGE_LIMIT.
Trait Implementations§
impl<'a> Copy for TagQuery<'a>
impl<'a> Eq for TagQuery<'a>
impl<'a> StructuralPartialEq for TagQuery<'a>
Auto Trait Implementations§
impl<'a> Freeze for TagQuery<'a>
impl<'a> RefUnwindSafe for TagQuery<'a>
impl<'a> Send for TagQuery<'a>
impl<'a> Sync for TagQuery<'a>
impl<'a> Unpin for TagQuery<'a>
impl<'a> UnsafeUnpin for TagQuery<'a>
impl<'a> UnwindSafe for TagQuery<'a>
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.