pub struct CreateCustomActionTypeOutput {
pub action_type: ActionType,
pub tags: Option<Vec<Tag>>,
}
Expand description
Represents the output of a CreateCustomActionType
operation.
Fields§
§action_type: ActionType
Returns information about the details of an action type.
Specifies the tags applied to the custom action.
Trait Implementations§
Source§impl Clone for CreateCustomActionTypeOutput
impl Clone for CreateCustomActionTypeOutput
Source§fn clone(&self) -> CreateCustomActionTypeOutput
fn clone(&self) -> CreateCustomActionTypeOutput
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 CreateCustomActionTypeOutput
impl Debug for CreateCustomActionTypeOutput
Source§impl Default for CreateCustomActionTypeOutput
impl Default for CreateCustomActionTypeOutput
Source§fn default() -> CreateCustomActionTypeOutput
fn default() -> CreateCustomActionTypeOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateCustomActionTypeOutput
impl<'de> Deserialize<'de> for CreateCustomActionTypeOutput
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 CreateCustomActionTypeOutput
impl PartialEq for CreateCustomActionTypeOutput
Source§fn eq(&self, other: &CreateCustomActionTypeOutput) -> bool
fn eq(&self, other: &CreateCustomActionTypeOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCustomActionTypeOutput
Auto Trait Implementations§
impl Freeze for CreateCustomActionTypeOutput
impl RefUnwindSafe for CreateCustomActionTypeOutput
impl Send for CreateCustomActionTypeOutput
impl Sync for CreateCustomActionTypeOutput
impl Unpin for CreateCustomActionTypeOutput
impl UnwindSafe for CreateCustomActionTypeOutput
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