pub struct DescribeDomainList {
pub Type: DomainType,
pub Offset: Integer,
pub Limit: Integer,
pub GroupId: Integer,
pub Keyword: Option<String>,
}Expand description
Fields§
§Type: DomainType域名分组类型,默认为ALL
Offset: Integer记录开始的偏移, 第一条记录为 0, 依次类推。默认值为0。 示例值:0
Limit: Integer要获取的域名数量, 比如获取20个, 则为20。默认值为3000。 示例值:20
GroupId: Integer分组ID, 第一个组为 0, 获取指定分组的域名 示例值:1
Keyword: Option<String>根据关键字搜索域名 示例值:qq
Trait Implementations§
Source§impl Clone for DescribeDomainList
impl Clone for DescribeDomainList
Source§fn clone(&self) -> DescribeDomainList
fn clone(&self) -> DescribeDomainList
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 DescribeDomainList
impl Debug for DescribeDomainList
Source§impl<'de> Deserialize<'de> for DescribeDomainList
impl<'de> Deserialize<'de> for DescribeDomainList
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 From<DescribeDomainList> for Action
impl From<DescribeDomainList> for Action
Source§fn from(v: DescribeDomainList) -> Self
fn from(v: DescribeDomainList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DescribeDomainList
impl RefUnwindSafe for DescribeDomainList
impl Send for DescribeDomainList
impl Sync for DescribeDomainList
impl Unpin for DescribeDomainList
impl UnwindSafe for DescribeDomainList
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