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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.