Skip to main content

Module utils

Module utils 

Source
Expand description

Utility helpers.

Provides password hashing and tokens (CryptoHelper), JSON/base64/token helpers (DataHelpers), date helpers (date::DateUtils), an outbound JSON HTTP client (http_client::HttpClient), request parsing (request_parser::RequestParser with multipart support), debouncers (TimeDebouncers), and the shared-value holder (atom::AtomHolder).

Use these for cross-cutting tasks that do not belong to a specific domain module.

Re-exports§

pub use crypto::CryptoHelper;
pub use data_helpers::DataHelpers;
pub use time_debouncers::TimeDebouncers;

Modules§

atom
Shared optional value holder.
crypto
Password hashing and token generation.
data_helpers
JSON, base64, and token helpers.
date
UTC date and time helpers.
http_client
Outbound JSON HTTP client.
request_parser
Query, JSON, and multipart request parsing.
time_debouncers
Time-based debouncers.