pub struct Tags { /* private fields */ }
Expand description
Interface for tags.
Implementations§
source§impl Tags
impl Tags
sourcepub async fn iter(self) -> Result<impl Stream<Item = Result<Tag>>>
pub async fn iter(self) -> Result<impl Stream<Item = Result<Tag>>>
Provides a stream over all mod tags.
sourcepub async fn add(self, options: EditTagsOptions) -> Result<()>
pub async fn add(self, options: EditTagsOptions) -> Result<()>
Add mod tags. [required: token]
sourcepub async fn delete(self, options: EditTagsOptions) -> Result<Deletion>
pub async fn delete(self, options: EditTagsOptions) -> Result<Deletion>
Delete mod tags. [required: token]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tags
impl !RefUnwindSafe for Tags
impl Send for Tags
impl Sync for Tags
impl Unpin for Tags
impl !UnwindSafe for Tags
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