uuid only.Expand description
UUID path/query parameter and form value parsing support.
§Enabling
This module is only available when the uuid feature is enabled. Enable it
in Cargo.toml as follows:
[dependencies.rocket]
version = "0.5.1"
features = ["uuid"]§Usage
Uuid implements FromParam and FromFormField (i.e,
FromForm), allowing UUID values to be accepted
directly in paths, queries, and forms. You can use the Uuid type directly
as a target of a dynamic parameter:
use rocket::serde::uuid::Uuid;
#[get("/users/<id>")]
fn user(id: Uuid) -> String {
format!("We found: {}", id)
}You can also use the Uuid as a form value, including in query strings:
use rocket::serde::uuid::Uuid;
#[get("/user?<id>")]
fn user(id: Uuid) -> String {
format!("User ID: {}", id)
}Additionally, Uuid implements UriDisplay<P> for all P. As such, route
URIs including Uuids can be generated in a type-safe manner:
use rocket::serde::uuid::Uuid;
use rocket::response::Redirect;
#[get("/user/<id>")]
fn user(id: Uuid) -> String {
format!("User ID: {}", id)
}
#[get("/user?<id>")]
fn old_user_path(id: Uuid) -> Redirect {
Redirect::to(uri!(user(id)))
}§Extra Features
The uuid crate exposes extra v{n} features
for generating UUIDs which are not enabled by Rocket. To enable these
features, depend on uuid directly. The extra functionality can be accessed
via both rocket::serde::uuid::Uuid or the direct uuid::Uuid; the types
are one and the same.
[dependencies.uuid]
version = "1"
features = ["v1", "v4"]Modules§
- fmt
- Adapters for alternative string formats.
Macros§
Structs§
- Builder
- A builder for creating a UUID.
- Error
- Error returned on
FromParamorFromFormFieldfailures. - Uuid
- A Universally Unique Identifier (UUID).
Enums§
- Variant
- The reserved variants of UUIDs.
- Version
- The version of the UUID, denoting the generating algorithm.
Type Aliases§
- Bytes
- A 128-bit (16 byte) buffer containing the UUID.