lambda_runtime 1.0.1

AWS Lambda Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Internally used services.
mod api_client;
mod api_response;
mod panic;

// Publicly available services.
mod trace;

pub(crate) use api_client::RuntimeApiClientService;
pub(crate) use api_response::RuntimeApiResponseService;
pub(crate) use panic::CatchPanicService;
pub use trace::TracingLayer;

#[cfg(feature = "opentelemetry")]
mod otel;
#[cfg(feature = "opentelemetry")]
#[cfg_attr(docsrs, doc(cfg(feature = "opentelemetry")))]
pub use otel::{OpenTelemetryFaasTrigger, OpenTelemetryLayer};