pub struct ListTagsForResourceOutput {
pub next_token: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Fields§
§next_token: Option<String>
If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequent API call to return the next page of the list. The ListTagsforResource call lists all available tags in one call and does not use pagination.
The tags for the resource.
Trait Implementations§
Source§impl Clone for ListTagsForResourceOutput
impl Clone for ListTagsForResourceOutput
Source§fn clone(&self) -> ListTagsForResourceOutput
fn clone(&self) -> ListTagsForResourceOutput
Returns a copy 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 ListTagsForResourceOutput
impl Debug for ListTagsForResourceOutput
Source§impl Default for ListTagsForResourceOutput
impl Default for ListTagsForResourceOutput
Source§fn default() -> ListTagsForResourceOutput
fn default() -> ListTagsForResourceOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTagsForResourceOutput
impl<'de> Deserialize<'de> for ListTagsForResourceOutput
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
impl StructuralPartialEq for ListTagsForResourceOutput
Auto Trait Implementations§
impl Freeze for ListTagsForResourceOutput
impl RefUnwindSafe for ListTagsForResourceOutput
impl Send for ListTagsForResourceOutput
impl Sync for ListTagsForResourceOutput
impl Unpin for ListTagsForResourceOutput
impl UnwindSafe for ListTagsForResourceOutput
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