Crate dxr_server

Source
Expand description

§dxr_server

This crate provides generic XML-RPC server functionality based on dxr.

Re-exports§

pub use axum;axum

Structs§

RouteBuilderaxum
builder that takes parameters for constructing a standalone axum::Router
Serveraxum
XML-RPC server implementation

Enums§

ServerErroraxum
error type for XML-RPC servers

Constants§

DEFAULT_SERVER_ROUTE
default server route / path for XML-RPC endpoints

Traits§

Handler
trait describing server methods that can be called via XML-RPC

Functions§

server
This function can be used in custom XML-RPC endpoints (BYOS - bring your own server).

Type Aliases§

HandlerFn
type alias for non-async handler functions without associated data
HandlerMap
type alias for atomically reference-counted map of XML-RPC method names and handlers
HandlerResult
type alias for the result type of method handlers

Attribute Macros§

async_trait