pub struct DeleteProjectDomain<'a> { /* private fields */ }
Expand description
Builder for Client::delete_project_domain
Implementations§
Source§impl<'a> DeleteProjectDomain<'a>
impl<'a> DeleteProjectDomain<'a>
pub fn new(client: &'a Client) -> Self
pub fn id<V>(self, value: V) -> Self
pub fn name<V>(self, value: V) -> Self
Sourcepub async fn send(
self,
) -> Result<ResponseValue<DeletedResponse>, Error<ErrorResponse>>
pub async fn send( self, ) -> Result<ResponseValue<DeletedResponse>, Error<ErrorResponse>>
Sends a DELETE
request to /v1/projects/{id}/domains/{name}
Trait Implementations§
Source§impl<'a> Clone for DeleteProjectDomain<'a>
impl<'a> Clone for DeleteProjectDomain<'a>
Source§fn clone(&self) -> DeleteProjectDomain<'a>
fn clone(&self) -> DeleteProjectDomain<'a>
Returns a copy 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<'a> Freeze for DeleteProjectDomain<'a>
impl<'a> !RefUnwindSafe for DeleteProjectDomain<'a>
impl<'a> Send for DeleteProjectDomain<'a>
impl<'a> Sync for DeleteProjectDomain<'a>
impl<'a> Unpin for DeleteProjectDomain<'a>
impl<'a> !UnwindSafe for DeleteProjectDomain<'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