pub struct DescribeTagsOutput {
pub resource_id: Option<String>,
pub resource_type: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Amazon ML returns the following elements.
Fields§
§resource_id: Option<String>
The ID of the tagged ML object.
resource_type: Option<String>
The type of the tagged ML object.
A list of tags associated with the ML object.
Trait Implementations§
Source§impl Clone for DescribeTagsOutput
impl Clone for DescribeTagsOutput
Source§fn clone(&self) -> DescribeTagsOutput
fn clone(&self) -> DescribeTagsOutput
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 DescribeTagsOutput
impl Debug for DescribeTagsOutput
Source§impl Default for DescribeTagsOutput
impl Default for DescribeTagsOutput
Source§fn default() -> DescribeTagsOutput
fn default() -> DescribeTagsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeTagsOutput
impl<'de> Deserialize<'de> for DescribeTagsOutput
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 DescribeTagsOutput
impl PartialEq for DescribeTagsOutput
impl StructuralPartialEq for DescribeTagsOutput
Auto Trait Implementations§
impl Freeze for DescribeTagsOutput
impl RefUnwindSafe for DescribeTagsOutput
impl Send for DescribeTagsOutput
impl Sync for DescribeTagsOutput
impl Unpin for DescribeTagsOutput
impl UnwindSafe for DescribeTagsOutput
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