Coverage Report

Created: 2025-06-04 06:23

/rust/registry/src/index.crates.io-6f17d22bba15001f/deranged-0.4.0/src/unsafe_wrapper.rs
Line
Count
Source
1
//! Declaration and implementation of `Unsafe`, which ensures all unsafe operations are correctly
2
//! placed in unsafe blocks.
3
4
/// A value that is safe to use, but is unsafe to construct or mutate.
5
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
6
pub(crate) struct Unsafe<T>(T);
7
8
impl<T: core::fmt::Debug> core::fmt::Debug for Unsafe<T> {
9
    #[inline]
10
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
11
        self.0.fmt(f)
12
    }
13
}
14
15
impl<T> Unsafe<T> {
16
    /// Create a new `Unsafe`, asserting that all invariants are upheld.
17
    #[inline(always)]
18
460k
    pub(crate) const unsafe fn new(value: T) -> Self {
19
460k
        Self(value)
20
460k
    }
Unexecuted instantiation: <deranged::unsafe_wrapper::Unsafe<i8>>::new
<deranged::unsafe_wrapper::Unsafe<i32>>::new
Line
Count
Source
18
92.0k
    pub(crate) const unsafe fn new(value: T) -> Self {
19
92.0k
        Self(value)
20
92.0k
    }
Unexecuted instantiation: <deranged::unsafe_wrapper::Unsafe<i64>>::new
<deranged::unsafe_wrapper::Unsafe<u8>>::new
Line
Count
Source
18
276k
    pub(crate) const unsafe fn new(value: T) -> Self {
19
276k
        Self(value)
20
276k
    }
<deranged::unsafe_wrapper::Unsafe<u32>>::new
Line
Count
Source
18
92.0k
    pub(crate) const unsafe fn new(value: T) -> Self {
19
92.0k
        Self(value)
20
92.0k
    }
21
22
    /// Get a reference to the inner value.
23
    #[inline(always)]
24
1.93M
    pub(crate) const fn get(&self) -> &T {
25
1.93M
        &self.0
26
1.93M
    }
Unexecuted instantiation: <deranged::unsafe_wrapper::Unsafe<i8>>::get
Unexecuted instantiation: <deranged::unsafe_wrapper::Unsafe<i32>>::get
Unexecuted instantiation: <deranged::unsafe_wrapper::Unsafe<i64>>::get
<deranged::unsafe_wrapper::Unsafe<u8>>::get
Line
Count
Source
24
1.65M
    pub(crate) const fn get(&self) -> &T {
25
1.65M
        &self.0
26
1.65M
    }
<deranged::unsafe_wrapper::Unsafe<u32>>::get
Line
Count
Source
24
276k
    pub(crate) const fn get(&self) -> &T {
25
276k
        &self.0
26
276k
    }
27
}
28
29
impl<T> core::ops::Deref for Unsafe<T> {
30
    type Target = T;
31
32
    #[inline(always)]
33
    fn deref(&self) -> &Self::Target {
34
        &self.0
35
    }
36
}