Function GenerateRequestIdWithPrefix
Source pub fn GenerateRequestIdWithPrefix(Prefix: &str) -> String
Expand description
Generate a unique request ID with a prefix
Format: {prefix}-{uuid}
§Arguments
prefix - Prefix to add before the UUID (e.g., “auth”, “download”)
§Example
let id = GenerateRequestIdWithPrefix("auth");