pub struct DescribeRecordList {
pub Domain: String,
pub Subdomain: Option<String>,
pub Keyword: Option<String>,
}Expand description
Fields§
§Domain: String要获取的解析记录所属的域名 示例值:example.com
Subdomain: Option<String>解析记录的主机头,如果传了此参数,则只会返回此主机头对应的解析记录 示例值:www
Keyword: Option<String>通过关键字搜索解析记录,当前支持搜索主机头和记录值 示例值:book
Trait Implementations§
Source§impl Clone for DescribeRecordList
impl Clone for DescribeRecordList
Source§fn clone(&self) -> DescribeRecordList
fn clone(&self) -> DescribeRecordList
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 DescribeRecordList
impl Debug for DescribeRecordList
Source§impl<'de> Deserialize<'de> for DescribeRecordList
impl<'de> Deserialize<'de> for DescribeRecordList
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<DescribeRecordList> for Action
impl From<DescribeRecordList> for Action
Source§fn from(v: DescribeRecordList) -> Self
fn from(v: DescribeRecordList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DescribeRecordList
impl RefUnwindSafe for DescribeRecordList
impl Send for DescribeRecordList
impl Sync for DescribeRecordList
impl Unpin for DescribeRecordList
impl UnwindSafe for DescribeRecordList
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