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

Method boxed

lambda-extension/src/error.rs:11–13  ·  view source on GitHub ↗
(str: T)

Source from the content-addressed store, hash-verified

9
10impl ExtensionError {
11 pub(crate) fn boxed<T: Into<String>>(str: T) -> Box<ExtensionError> {
12 Box::new(ExtensionError { err: str.into() })
13 }
14}
15
16impl std::fmt::Display for ExtensionError {

Callers 5

callMethod · 0.80
adapter_is_boxableFunction · 0.80
establish_connectionFunction · 0.80
pollMethod · 0.80

Calls

no outgoing calls

Tested by 2

adapter_is_boxableFunction · 0.64