1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-23 10:53:02 +01:00

Implement Debug for RequestId (#31)

This commit is contained in:
Thomas de Zeeuw 2021-08-13 10:57:21 +02:00 committed by GitHub
parent be133d9cd5
commit 2bea16dd27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ use uuid::Uuid;
/// format!("{}", uuid)
/// }
/// ```
#[derive(Clone, Copy)]
#[derive(Clone, Copy, Debug)]
pub struct RequestId(Uuid);
impl RequestId {