pub struct BasePathMapping {
pub base_path: Option<String>,
pub rest_api_id: Option<String>,
pub stage: Option<String>,
}Expand description
Fields§
§base_path: Option<String>The base path name that callers of the API must provide as part of the URL after the domain name.
rest_api_id: Option<String>The string identifier of the associated RestApi.
stage: Option<String>The name of the associated stage.
Trait Implementations§
Source§impl Clone for BasePathMapping
impl Clone for BasePathMapping
Source§fn clone(&self) -> BasePathMapping
fn clone(&self) -> BasePathMapping
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 BasePathMapping
impl Debug for BasePathMapping
Source§impl Default for BasePathMapping
impl Default for BasePathMapping
Source§fn default() -> BasePathMapping
fn default() -> BasePathMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BasePathMapping
impl<'de> Deserialize<'de> for BasePathMapping
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BasePathMapping
impl PartialEq for BasePathMapping
impl StructuralPartialEq for BasePathMapping
Auto Trait Implementations§
impl Freeze for BasePathMapping
impl RefUnwindSafe for BasePathMapping
impl Send for BasePathMapping
impl Sync for BasePathMapping
impl Unpin for BasePathMapping
impl UnwindSafe for BasePathMapping
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