pub struct TagPage {
pub items: Vec<TagSummary>,
pub next_cursor: Option<String>,
}Expand description
One bounded page of active tags.
Fields§
§items: Vec<TagSummary>Tags in deterministic UTF-8 lexical order.
next_cursor: Option<String>Pass to the next call; None when the scan is complete.
Trait Implementations§
impl Eq for TagPage
impl StructuralPartialEq for TagPage
Auto Trait Implementations§
impl Freeze for TagPage
impl RefUnwindSafe for TagPage
impl Send for TagPage
impl Sync for TagPage
impl Unpin for TagPage
impl UnsafeUnpin for TagPage
impl UnwindSafe for TagPage
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.