pub struct ListTargetsForPolicyResponse {
pub next_marker: Option<String>,
pub targets: Option<Vec<String>>,
}Fields§
§next_marker: Option<String>A marker used to get the next set of results.
targets: Option<Vec<String>>The policy targets.
Trait Implementations§
Source§impl Clone for ListTargetsForPolicyResponse
impl Clone for ListTargetsForPolicyResponse
Source§fn clone(&self) -> ListTargetsForPolicyResponse
fn clone(&self) -> ListTargetsForPolicyResponse
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 ListTargetsForPolicyResponse
impl Debug for ListTargetsForPolicyResponse
Source§impl Default for ListTargetsForPolicyResponse
impl Default for ListTargetsForPolicyResponse
Source§fn default() -> ListTargetsForPolicyResponse
fn default() -> ListTargetsForPolicyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTargetsForPolicyResponse
impl<'de> Deserialize<'de> for ListTargetsForPolicyResponse
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 ListTargetsForPolicyResponse
impl PartialEq for ListTargetsForPolicyResponse
Source§fn eq(&self, other: &ListTargetsForPolicyResponse) -> bool
fn eq(&self, other: &ListTargetsForPolicyResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListTargetsForPolicyResponse
Auto Trait Implementations§
impl Freeze for ListTargetsForPolicyResponse
impl RefUnwindSafe for ListTargetsForPolicyResponse
impl Send for ListTargetsForPolicyResponse
impl Sync for ListTargetsForPolicyResponse
impl Unpin for ListTargetsForPolicyResponse
impl UnwindSafe for ListTargetsForPolicyResponse
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