pub struct TagManager { /* private fields */ }Expand description
Owns the per-(bucket, key) and per-bucket tag state. All operations
take the inner RwLock; cloning a manager is intentionally not
supported — share via Arc<TagManager>.
Implementations§
Source§impl TagManager
impl TagManager
Replace (or create) the object-level tag set. AWS PutObjectTagging is a full-replace operation (no merge), so we mirror that.
Borrow-clone the object-level tag set. None when no tags have
been set for (bucket, key).
Drop the object-level tag set for (bucket, key) (idempotent —
missing entry is a no-op, matching AWS DeleteObjectTagging).
Replace (or create) the bucket-level tag set.
Borrow-clone the bucket-level tag set.
Drop the bucket-level tag set (idempotent).
Trait Implementations§
Source§impl Debug for TagManager
impl Debug for TagManager
Source§impl Default for TagManager
impl Default for TagManager
Source§fn default() -> TagManager
fn default() -> TagManager
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for TagManager
impl RefUnwindSafe for TagManager
impl Send for TagManager
impl Sync for TagManager
impl Unpin for TagManager
impl UnsafeUnpin for TagManager
impl UnwindSafe for TagManager
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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