pub struct ListHostsInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value.
next_token: Option<String>The token that was returned from the previous ListHosts call, which can be used to return the next set of hosts in the list.
Trait Implementations§
Source§impl Clone for ListHostsInput
impl Clone for ListHostsInput
Source§fn clone(&self) -> ListHostsInput
fn clone(&self) -> ListHostsInput
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 ListHostsInput
impl Debug for ListHostsInput
Source§impl Default for ListHostsInput
impl Default for ListHostsInput
Source§fn default() -> ListHostsInput
fn default() -> ListHostsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListHostsInput
impl PartialEq for ListHostsInput
Source§impl Serialize for ListHostsInput
impl Serialize for ListHostsInput
impl StructuralPartialEq for ListHostsInput
Auto Trait Implementations§
impl Freeze for ListHostsInput
impl RefUnwindSafe for ListHostsInput
impl Send for ListHostsInput
impl Sync for ListHostsInput
impl Unpin for ListHostsInput
impl UnwindSafe for ListHostsInput
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