pub struct DnsService { /* private fields */ }Implementationsยง
Sourceยงimpl DnsService
impl DnsService
pub async fn create_txt_record( &self, request: &CreateTxtRecordRequest, ) -> Result<CreateTxtRecordResponse>
pub async fn create_txt_record_with_options( &self, request: &CreateTxtRecordRequest, options: &RequestOptions, ) -> Result<CreateTxtRecordResponse>
pub async fn modify_txt_record( &self, request: &ModifyTxtRecordRequest, ) -> Result<ModifyTxtRecordResponse>
pub async fn modify_txt_record_with_options( &self, request: &ModifyTxtRecordRequest, options: &RequestOptions, ) -> Result<ModifyTxtRecordResponse>
pub async fn delete_record( &self, request: &DeleteRecordRequest, ) -> Result<DeleteRecordResponse>
pub async fn delete_record_with_options( &self, request: &DeleteRecordRequest, options: &RequestOptions, ) -> Result<DeleteRecordResponse>
Trait Implementationsยง
Sourceยงimpl Clone for DnsService
impl Clone for DnsService
Sourceยงfn clone(&self) -> DnsService
fn clone(&self) -> DnsService
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 moreAuto Trait Implementationsยง
impl Freeze for DnsService
impl !RefUnwindSafe for DnsService
impl Send for DnsService
impl Sync for DnsService
impl Unpin for DnsService
impl !UnwindSafe for DnsService
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