generate_request_id

Function generate_request_id 

Source
pub fn generate_request_id() -> String
Expand description

Generates a unique request ID for Air operations.

Uses UUID v4 to generate a cryptographically random unique identifier. This is used to correlate requests with responses and for tracing.

§Returns

A UUID string in simple format (without dashes)

§Example

use Mountain::Air::AirServiceProvider::generate_request_id;

let id = generate_request_id();
println!("Request ID: {}", id);
// Output example: Request ID: a1b2c3d4e5f67890...