pub struct ListTargetsOutput {
pub next_page: Option<String>,
pub targets: Option<Vec<Target>>,
}Fields§
§next_page: Option<String>§targets: Option<Vec<Target>>Implementations§
Source§impl ListTargetsOutput
impl ListTargetsOutput
pub fn new() -> ListTargetsOutput
Trait Implementations§
Source§impl Clone for ListTargetsOutput
impl Clone for ListTargetsOutput
Source§fn clone(&self) -> ListTargetsOutput
fn clone(&self) -> ListTargetsOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListTargetsOutput
impl Debug for ListTargetsOutput
Source§impl Default for ListTargetsOutput
impl Default for ListTargetsOutput
Source§fn default() -> ListTargetsOutput
fn default() -> ListTargetsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTargetsOutput
impl<'de> Deserialize<'de> for ListTargetsOutput
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 ListTargetsOutput
impl PartialEq for ListTargetsOutput
Source§fn eq(&self, other: &ListTargetsOutput) -> bool
fn eq(&self, other: &ListTargetsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListTargetsOutput
impl Serialize for ListTargetsOutput
impl StructuralPartialEq for ListTargetsOutput
Auto Trait Implementations§
impl Freeze for ListTargetsOutput
impl RefUnwindSafe for ListTargetsOutput
impl Send for ListTargetsOutput
impl Sync for ListTargetsOutput
impl Unpin for ListTargetsOutput
impl UnsafeUnpin for ListTargetsOutput
impl UnwindSafe for ListTargetsOutput
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