Skip to content

Commit

Permalink
Hide RequestId::from_u64 even more
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Nov 21, 2024
1 parent d2fe335 commit d02d1fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/telemetry/src/capturing/ng/collector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl RequestId {
self.0.into_u64()
}

pub(crate) fn from_u64(value: u64) -> Option<Self> {
pub(super) fn from_u64(value: u64) -> Option<Self> {
SerializableNonZeroU64::from_u64(value).map(Self)
}
}
Expand Down

0 comments on commit d02d1fb

Please sign in to comment.