pub struct DescribeRecord {
pub Domain: String,
pub RecordId: u64,
}Expand description
Fields§
§Domain: String域名 示例值:dnspod.cn
RecordId: u64记录 ID 。可以通过接口 DescribeRecordList 查到所有的解析记录列表以及对应的 RecordId 示例值:162
Trait Implementations§
Source§impl Clone for DescribeRecord
impl Clone for DescribeRecord
Source§fn clone(&self) -> DescribeRecord
fn clone(&self) -> DescribeRecord
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 DescribeRecord
impl Debug for DescribeRecord
Source§impl<'de> Deserialize<'de> for DescribeRecord
impl<'de> Deserialize<'de> for DescribeRecord
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 ExtractCommonParams for DescribeRecord
impl ExtractCommonParams for DescribeRecord
Source§impl From<DescribeRecord> for Action
impl From<DescribeRecord> for Action
Source§fn from(v: DescribeRecord) -> Self
fn from(v: DescribeRecord) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DescribeRecord
impl RefUnwindSafe for DescribeRecord
impl Send for DescribeRecord
impl Sync for DescribeRecord
impl Unpin for DescribeRecord
impl UnwindSafe for DescribeRecord
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