pub struct DeleteRecord<'a> {
pub domain: &'a str,
pub record_id: u64,
pub domain_id: Option<u64>,
}Expand description
Request parameters for deleting a record.
Fieldsยง
ยงdomain: &'a strยงrecord_id: u64ยงdomain_id: Option<u64>Implementationsยง
Sourceยงimpl<'a> DeleteRecord<'a>
impl<'a> DeleteRecord<'a>
Trait Implementationsยง
Sourceยงimpl<'a> Endpoint for DeleteRecord<'a>
impl<'a> Endpoint for DeleteRecord<'a>
type Output = DeleteRecordResponse
fn service(&self) -> Cow<'static, str>
fn action(&self) -> Cow<'static, str>
fn version(&self) -> Cow<'static, str>
fn region(&self) -> Option<Cow<'_, str>>
fn payload(&self) -> Value
fn scheme(&self) -> Cow<'static, str>
fn host(&self) -> Cow<'_, str>
fn path(&self) -> Cow<'_, str>
fn extra_headers(&self) -> Option<Vec<(Cow<'_, str>, Cow<'_, str>)>>
fn parse(&self, body: Value) -> Result<Self::Output, TencentCloudError>
Auto Trait Implementationsยง
impl<'a> Freeze for DeleteRecord<'a>
impl<'a> RefUnwindSafe for DeleteRecord<'a>
impl<'a> Send for DeleteRecord<'a>
impl<'a> Sync for DeleteRecord<'a>
impl<'a> Unpin for DeleteRecord<'a>
impl<'a> UnwindSafe for DeleteRecord<'a>
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