pub struct DeleteBasePathMappingRequest {
pub base_path: String,
pub domain_name: String,
}Expand description
A request to delete the BasePathMapping resource.
Fields§
§base_path: String[Required] The base path name of the BasePathMapping resource to delete.
To specify an empty base path, set this parameter to '(none)'.
domain_name: String[Required] The domain name of the BasePathMapping resource to delete.
Trait Implementations§
Source§impl Clone for DeleteBasePathMappingRequest
impl Clone for DeleteBasePathMappingRequest
Source§fn clone(&self) -> DeleteBasePathMappingRequest
fn clone(&self) -> DeleteBasePathMappingRequest
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 DeleteBasePathMappingRequest
impl Debug for DeleteBasePathMappingRequest
Source§impl Default for DeleteBasePathMappingRequest
impl Default for DeleteBasePathMappingRequest
Source§fn default() -> DeleteBasePathMappingRequest
fn default() -> DeleteBasePathMappingRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteBasePathMappingRequest
impl PartialEq for DeleteBasePathMappingRequest
Source§fn eq(&self, other: &DeleteBasePathMappingRequest) -> bool
fn eq(&self, other: &DeleteBasePathMappingRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteBasePathMappingRequest
Auto Trait Implementations§
impl Freeze for DeleteBasePathMappingRequest
impl RefUnwindSafe for DeleteBasePathMappingRequest
impl Send for DeleteBasePathMappingRequest
impl Sync for DeleteBasePathMappingRequest
impl Unpin for DeleteBasePathMappingRequest
impl UnwindSafe for DeleteBasePathMappingRequest
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