Installation
http
HTTP request/response types, auth config, and thehttp helper.
Import
Types
HttpAuthConfig · HttpInvocationConfig · HttpMethod · HttpRequest · HttpResponse
HttpAuthConfig
Authentication configuration for HTTP-invoked functions.Hmac: HMAC signature verification using a shared secret.Bearer: Bearer token authentication.ApiKey: API key sent via a custom header.
HttpInvocationConfig
Configuration for an HTTP-invoked function (Lambda, Cloudflare Workers, etc.).HttpMethod
HTTP method accepted byHttpInvocationConfig. Distinct from the core
builtin_triggers HTTP method enum, which also covers HEAD/OPTIONS.
HttpRequest
Buffered HTTP request received by a function handler.HttpResponse
Buffered HTTP response returned from a function handler.observability
Logger, OpenTelemetry config, and span helpers. ImportTypes
BaggageSpanProcessor · ConnectionState · Logger · OtelConfig · ReconnectionConfig · WorkerGaugesOptions
BaggageSpanProcessor
OpenTelemetry span processor that copies OTel baggage entries onto each started span as attributes.ConnectionState
Connection state for the shared WebSocketLogger
Structured logger that emits logs as OpenTelemetry LogRecords. Every log call automatically captures the active trace and span context, correlating your logs with distributed traces without any manual wiring. When OTel is not initialized, Logger gracefully falls back to thetracing
crate.
Pass structured data as the second argument to any log method. Using a
serde_json::Value object of key-value pairs (instead of string
interpolation) lets you filter, aggregate, and build dashboards in your
observability backend.
OtelConfig
Configuration for OpenTelemetry initializationReconnectionConfig
Configuration for WebSocket reconnection behaviorWorkerGaugesOptions
Options for registering worker gauges.queue
Queue enqueue result types. ImportTypes
EnqueueResult
EnqueueResult
Result returned when a function is invoked withTriggerAction.Enqueue.
stream
Stream trigger configs, change events, IO inputs, and update operations. ImportTypes
MergePath · StreamAuthInput · StreamAuthResult · StreamChangeEvent · StreamChangeEventDetail · StreamDeleteInput · StreamDeleteResult · StreamEventType · StreamGetInput · StreamJoinLeaveEvent · StreamJoinLeaveTriggerConfig · StreamJoinResult · StreamListGroupsInput · StreamListInput · StreamSetInput · StreamSetResult · StreamTriggerConfig · StreamUpdateInput · StreamUpdateResult · UpdateOp · UpdateOpError
MergePath
Path target for aUpdateOp::Merge operation. Accepts either a
single string (legacy / first-level field) or an array of literal
segments (nested path).
Path normalization rules applied by the engine:
- absent /
Single("")/Segments(vec![])→ root merge Single("foo")is equivalent toSegments(vec!["foo".into()])Segments(["a", "b", "c"])walks three literal keys, never interpreting dots specially.Segments(vec!["a.b".into()])is a single literal key named"a.b".
#[serde(untagged)] tries
variants in declaration order, Single MUST come before
Segments so a JSON string deserializes into Single rather than
failing the array match first.
StreamAuthInput
Input for stream authentication.StreamAuthResult
Result of stream authentication.StreamChangeEvent
Handler input forstream triggers, fired when an item changes
via stream::set, stream::update, or stream::delete.
StreamChangeEventDetail
Detail of a stream change event containing the mutation type and data.StreamDeleteInput
Input for deleting a stream item.StreamDeleteResult
Result of a stream delete operation.StreamEventType
The kind of mutation that occurred on a stream item.StreamGetInput
Input for retrieving a single stream item.StreamJoinLeaveEvent
Event payload for stream join/leave triggers.StreamJoinLeaveTriggerConfig
Trigger config forstream:join and stream:leave triggers.
StreamJoinResult
Result of a stream join request.StreamListGroupsInput
Input for listing all groups in a stream.StreamListInput
Input for listing all items in a stream group.StreamSetInput
Input for setting a stream item.StreamSetResult
Result of a stream set operation.StreamTriggerConfig
Trigger config forstream triggers. Filters which item changes fire the handler.
StreamUpdateInput
Input for atomically updating a stream item.StreamUpdateResult
Result of an atomic update operationUpdateOp
Operations that can be performed atomically on a stream valueUpdateOpError
Per-op error reported by an atomic update operation.worker_connection_manager
RBAC auth and registration callback types. ImportTypes
AuthInput · AuthResult · OnFunctionRegistrationInput · OnFunctionRegistrationResult · OnTriggerRegistrationInput · OnTriggerRegistrationResult · OnTriggerTypeRegistrationInput · OnTriggerTypeRegistrationResult
AuthInput
Input passed to the RBAC auth function during WebSocket upgrade. Contains the HTTP headers, query parameters, and client IP from the connecting worker’s upgrade request.AuthResult
Return value from the RBAC auth function. Controls which functions the authenticated worker can invoke and what context is forwarded to the middleware.OnFunctionRegistrationInput
Input passed to theon_function_registration_function_id hook
when a worker attempts to register a function through the RBAC port.
Return an OnFunctionRegistrationResult with the (possibly mapped)
fields, or return an error to deny the registration.
OnFunctionRegistrationResult
Result returned from theon_function_registration_function_id hook.
Omitted fields keep the original value from the registration request.
OnTriggerRegistrationInput
Input passed to theon_trigger_registration_function_id hook
when a worker attempts to register a trigger through the RBAC port.
Return an OnTriggerRegistrationResult with the (possibly mapped)
fields, or return an error to deny the registration.
OnTriggerRegistrationResult
Result returned from theon_trigger_registration_function_id hook.
Omitted fields keep the original value from the registration request.
OnTriggerTypeRegistrationInput
Input passed to theon_trigger_type_registration_function_id hook
when a worker attempts to register a new trigger type through the RBAC port.
Return an OnTriggerTypeRegistrationResult with the (possibly mapped)
fields, or return an error to deny the registration.
OnTriggerTypeRegistrationResult
Result returned from theon_trigger_type_registration_function_id hook.
Omitted fields keep the original value from the registration request.