pub struct ListTagsOfResourceOutput {
pub next_token: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Fields§
§next_token: Option<String>
If this value is returned, there are additional results to be displayed. To retrieve them, call ListTagsOfResource again, with NextToken set to this value.
The tags currently associated with the Amazon DynamoDB resource.
Trait Implementations§
Source§impl Clone for ListTagsOfResourceOutput
impl Clone for ListTagsOfResourceOutput
Source§fn clone(&self) -> ListTagsOfResourceOutput
fn clone(&self) -> ListTagsOfResourceOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListTagsOfResourceOutput
impl Debug for ListTagsOfResourceOutput
Source§impl Default for ListTagsOfResourceOutput
impl Default for ListTagsOfResourceOutput
Source§fn default() -> ListTagsOfResourceOutput
fn default() -> ListTagsOfResourceOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTagsOfResourceOutput
impl<'de> Deserialize<'de> for ListTagsOfResourceOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListTagsOfResourceOutput
impl PartialEq for ListTagsOfResourceOutput
impl StructuralPartialEq for ListTagsOfResourceOutput
Auto Trait Implementations§
impl Freeze for ListTagsOfResourceOutput
impl RefUnwindSafe for ListTagsOfResourceOutput
impl Send for ListTagsOfResourceOutput
impl Sync for ListTagsOfResourceOutput
impl Unpin for ListTagsOfResourceOutput
impl UnwindSafe for ListTagsOfResourceOutput
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