pub struct GetBasePathMappingsRequest {
pub domain_name: String,
pub limit: Option<i64>,
pub position: Option<String>,
}Expand description
A request to get information about a collection of BasePathMapping resources.
Fields§
§domain_name: String[Required] The domain name of a BasePathMapping resource.
limit: Option<i64>The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
position: Option<String>The current pagination position in the paged result set.
Trait Implementations§
Source§impl Clone for GetBasePathMappingsRequest
impl Clone for GetBasePathMappingsRequest
Source§fn clone(&self) -> GetBasePathMappingsRequest
fn clone(&self) -> GetBasePathMappingsRequest
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 GetBasePathMappingsRequest
impl Debug for GetBasePathMappingsRequest
Source§impl Default for GetBasePathMappingsRequest
impl Default for GetBasePathMappingsRequest
Source§fn default() -> GetBasePathMappingsRequest
fn default() -> GetBasePathMappingsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetBasePathMappingsRequest
Auto Trait Implementations§
impl Freeze for GetBasePathMappingsRequest
impl RefUnwindSafe for GetBasePathMappingsRequest
impl Send for GetBasePathMappingsRequest
impl Sync for GetBasePathMappingsRequest
impl Unpin for GetBasePathMappingsRequest
impl UnwindSafe for GetBasePathMappingsRequest
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