pub struct ListTargetsResult {
pub next_token: Option<String>,
pub targets: Option<Vec<TargetSummary>>,
}
Fields§
§next_token: Option<String>
An enumeration token that can be used in a request to return the next batch of results.
targets: Option<Vec<TargetSummary>>
The list of notification rule targets.
Trait Implementations§
Source§impl Clone for ListTargetsResult
impl Clone for ListTargetsResult
Source§fn clone(&self) -> ListTargetsResult
fn clone(&self) -> ListTargetsResult
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 ListTargetsResult
impl Debug for ListTargetsResult
Source§impl Default for ListTargetsResult
impl Default for ListTargetsResult
Source§fn default() -> ListTargetsResult
fn default() -> ListTargetsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTargetsResult
impl<'de> Deserialize<'de> for ListTargetsResult
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 ListTargetsResult
impl PartialEq for ListTargetsResult
impl StructuralPartialEq for ListTargetsResult
Auto Trait Implementations§
impl Freeze for ListTargetsResult
impl RefUnwindSafe for ListTargetsResult
impl Send for ListTargetsResult
impl Sync for ListTargetsResult
impl Unpin for ListTargetsResult
impl UnwindSafe for ListTargetsResult
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