MCPcopy Create free account
hub / github.com/aws/aws-lambda-rust-runtime / with_path_parameters

Method with_path_parameters

lambda-http/src/ext/extensions.rs:208–215  ·  view source on GitHub ↗
(self, parameters: P)

Source from the content-addressed store, hash-verified

206 }
207
208 fn with_path_parameters<P>(self, parameters: P) -> Self
209 where
210 P: Into<QueryMap>,
211 {
212 let mut s = self;
213 s.insert(PathParameters(parameters.into()));
214 s
215 }
216
217 fn stage_variables(&self) -> QueryMap {
218 self.stage_variables_ref().cloned().unwrap_or_default()

Calls 2

PathParametersClass · 0.85
map_req_extFunction · 0.85