pub struct ListActionTypesOutput {
pub action_types: Vec<ActionType>,
pub next_token: Option<String>,
}
Expand description
Represents the output of a ListActionTypes
action.
Fields§
§action_types: Vec<ActionType>
Provides details of the action types.
next_token: Option<String>
If the amount of returned information is significantly large, an identifier is also returned. It can be used in a subsequent list action types call to return the next set of action types in the list.
Trait Implementations§
Source§impl Clone for ListActionTypesOutput
impl Clone for ListActionTypesOutput
Source§fn clone(&self) -> ListActionTypesOutput
fn clone(&self) -> ListActionTypesOutput
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 ListActionTypesOutput
impl Debug for ListActionTypesOutput
Source§impl Default for ListActionTypesOutput
impl Default for ListActionTypesOutput
Source§fn default() -> ListActionTypesOutput
fn default() -> ListActionTypesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListActionTypesOutput
impl<'de> Deserialize<'de> for ListActionTypesOutput
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 ListActionTypesOutput
impl PartialEq for ListActionTypesOutput
impl StructuralPartialEq for ListActionTypesOutput
Auto Trait Implementations§
impl Freeze for ListActionTypesOutput
impl RefUnwindSafe for ListActionTypesOutput
impl Send for ListActionTypesOutput
impl Sync for ListActionTypesOutput
impl Unpin for ListActionTypesOutput
impl UnwindSafe for ListActionTypesOutput
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