pub struct ListHostsOutput {
pub hosts: Option<Vec<Host>>,
pub next_token: Option<String>,
}
Fields§
§hosts: Option<Vec<Host>>
A list of hosts and the details for each host, such as status, endpoint, and provider type.
next_token: Option<String>
A token that can be used in the next ListHosts
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken
values are returned.
Trait Implementations§
Source§impl Clone for ListHostsOutput
impl Clone for ListHostsOutput
Source§fn clone(&self) -> ListHostsOutput
fn clone(&self) -> ListHostsOutput
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 ListHostsOutput
impl Debug for ListHostsOutput
Source§impl Default for ListHostsOutput
impl Default for ListHostsOutput
Source§fn default() -> ListHostsOutput
fn default() -> ListHostsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListHostsOutput
impl<'de> Deserialize<'de> for ListHostsOutput
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 ListHostsOutput
impl PartialEq for ListHostsOutput
impl StructuralPartialEq for ListHostsOutput
Auto Trait Implementations§
impl Freeze for ListHostsOutput
impl RefUnwindSafe for ListHostsOutput
impl Send for ListHostsOutput
impl Sync for ListHostsOutput
impl Unpin for ListHostsOutput
impl UnwindSafe for ListHostsOutput
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