pub struct DomainInfos {
pub domain_infos: Vec<DomainInfo>,
pub next_page_token: Option<String>,
}
Expand description
Contains a paginated collection of DomainInfo structures.
Fields§
§domain_infos: Vec<DomainInfo>
A list of DomainInfo structures.
next_page_token: Option<String>
If a NextPageToken
was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken
. Keep all other arguments unchanged.
The configured maximumPageSize
determines how many results can be returned in a single call.
Trait Implementations§
Source§impl Clone for DomainInfos
impl Clone for DomainInfos
Source§fn clone(&self) -> DomainInfos
fn clone(&self) -> DomainInfos
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 DomainInfos
impl Debug for DomainInfos
Source§impl Default for DomainInfos
impl Default for DomainInfos
Source§fn default() -> DomainInfos
fn default() -> DomainInfos
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DomainInfos
impl<'de> Deserialize<'de> for DomainInfos
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 DomainInfos
impl PartialEq for DomainInfos
impl StructuralPartialEq for DomainInfos
Auto Trait Implementations§
impl Freeze for DomainInfos
impl RefUnwindSafe for DomainInfos
impl Send for DomainInfos
impl Sync for DomainInfos
impl Unpin for DomainInfos
impl UnwindSafe for DomainInfos
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