Module kvarn::prelude

source ·
Expand description

The Kvarn Prelude

The purpose of this module is to simplify, make modules dependencies obvious, and keep consistency in the development of the Kvarn web server.

Other specialised preludes can be found as modules, including

  • a fs prelude
  • a networking prelude
  • an internals prelude
  • a threading prelude

Re-exports

Modules

  • Provides abstractions for working with bytes.
  • Common characters expressed as a single byte each, according to UTF-8.
  • Prelude: time
  • Utilities for formatting and printing Strings.
  • Prelude: file system
  • HTTP header types
  • Prelude: internal
  • Traits, helpers, and type definitions for core I/O functionality.
  • Networking primitives for TCP/UDP communication.
  • Prelude: networking
  • General parsing complying to the HTTP standards.
  • Utilities for the str primitive type.
  • Prelude: internal
  • URI component of request and response lines
  • Utility functions for web application development.

Macros

  • Derive macro generating an impl of the trait Debug.
  • Derive macro generating an impl of the trait Ord.
  • Derive macro generating an impl of the trait PartialOrd.
  • Convenience macro to create a Bytes from multiple &[u8] sources.
  • Logs a message at the debug level.
  • Logs a message at the error level.
  • Creates a CompactString using interpolation of runtime expressions.
  • Logs a message at the info level.
  • The standard logging macro.
  • Logs a message at the trace level.
  • Logs a message at the warn level.

Structs

  • A thread-safe reference-counting pointer. ‘Arc’ stands for ‘Atomically Reference Counted’.
  • A cheaply cloneable and sliceable chunk of contiguous memory.
  • A unique reference to a contiguous slice of memory.
  • A CompactString is a compact string type that can be used almost anywhere a String or str can be used.
  • The context of an asynchronous task.
  • A Duration type to represent a span of time, typically used for system timeouts.
  • Configuration for formatting.
  • A hash map implemented with quadratic probing and SIMD lookup.
  • A set of HTTP headers
  • Represents an HTTP header field name
  • Represents an HTTP header field value.
  • A measurement of a monotonically nondecreasing clock. Opaque and useful only with Duration.
  • The Request Method (VERB)
  • An asynchronous Mutex-like type.
  • A slice of a path (akin to str).
  • An owned, mutable path (akin to String).
  • A pinned pointer.
  • A wrapper around a byte buffer that is incrementally filled and initialized.
  • Represents an HTTP request.
  • Represents an HTTP response
  • An asynchronous reader-writer lock.
  • An HTTP status code (status-code in RFC 7230 et al.).
  • The URI component of a request.
  • Represents a version of the HTTP spec.
  • A writeable Bytes.

Enums

  • A clone-on-write smart pointer.
  • An IP address, either IPv4 or IPv6.
  • Indicates whether a value is available or if the current task has been scheduled to receive a wakeup instead.
  • An error regarding the sanitization of a request.
  • An internet socket address, either IPv4 or IPv6.

Constants

Traits

  • Trait to enable .as_clean to get a CleanDebug for the variable.
  • Reads bytes from a source.
  • Reads bytes from a source.
  • Writes bytes asynchronously.
  • Writes bytes to a sink.
  • A BufRead is a type of Reader which has an internal buffer, allowing it to perform extra ways of reading.
  • ? formatting.
  • Format trait for an empty format, {}.
  • A future represents an asynchronous computation obtained by use of async.
  • Trait for types that form a total order.
  • Trait for types that form a partial order.
  • The Read trait allows for reading bytes from a source.
  • The Seek trait provides a cursor which can be moved within a stream of bytes.
  • A trait for converting a value to a CompactString.
  • Simple and safe type conversions that may fail in a controlled way under some circumstances. It is the reciprocal of TryInto.
  • A trait for objects which are byte-oriented sinks.