pub enum Action {
DescribeDomainList(DescribeDomainList),
CreateDomain(CreateDomain),
DeleteDomain(DeleteDomain),
CreateRecord(CreateRecord),
DeleteRecord(DeleteRecord),
DescribeRecordList(DescribeRecordList),
DescribeRecord(DescribeRecord),
DescribeRecordType(DescribeRecordType),
DescribeRecordLineList(DescribeRecordLineList),
ModifyDynamicDNS(ModifyDynamicDNS),
ModifyRecord(ModifyRecord),
}Variants§
DescribeDomainList(DescribeDomainList)
CreateDomain(CreateDomain)
DeleteDomain(DeleteDomain)
CreateRecord(CreateRecord)
DeleteRecord(DeleteRecord)
DescribeRecordList(DescribeRecordList)
DescribeRecord(DescribeRecord)
DescribeRecordType(DescribeRecordType)
DescribeRecordLineList(DescribeRecordLineList)
ModifyDynamicDNS(ModifyDynamicDNS)
ModifyRecord(ModifyRecord)
Trait Implementations§
Source§impl ExtractCommonParams for Action
impl ExtractCommonParams for Action
Source§impl From<CreateDomain> for Action
impl From<CreateDomain> for Action
Source§fn from(v: CreateDomain) -> Self
fn from(v: CreateDomain) -> Self
Converts to this type from the input type.
Source§impl From<CreateRecord> for Action
impl From<CreateRecord> for Action
Source§fn from(v: CreateRecord) -> Self
fn from(v: CreateRecord) -> Self
Converts to this type from the input type.
Source§impl From<DeleteDomain> for Action
impl From<DeleteDomain> for Action
Source§fn from(v: DeleteDomain) -> Self
fn from(v: DeleteDomain) -> Self
Converts to this type from the input type.
Source§impl From<DeleteRecord> for Action
impl From<DeleteRecord> for Action
Source§fn from(v: DeleteRecord) -> Self
fn from(v: DeleteRecord) -> Self
Converts to this type from the input type.
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.
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.
Source§impl From<DescribeRecordLineList> for Action
impl From<DescribeRecordLineList> for Action
Source§fn from(v: DescribeRecordLineList) -> Self
fn from(v: DescribeRecordLineList) -> Self
Converts to this type from the input type.
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.
Source§impl From<DescribeRecordType> for Action
impl From<DescribeRecordType> for Action
Source§fn from(v: DescribeRecordType) -> Self
fn from(v: DescribeRecordType) -> Self
Converts to this type from the input type.
Source§impl From<ModifyDynamicDNS> for Action
impl From<ModifyDynamicDNS> for Action
Source§fn from(v: ModifyDynamicDNS) -> Self
fn from(v: ModifyDynamicDNS) -> Self
Converts to this type from the input type.
Source§impl From<ModifyRecord> for Action
impl From<ModifyRecord> for Action
Source§fn from(v: ModifyRecord) -> Self
fn from(v: ModifyRecord) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
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