pub trait DeclassifyRefMut {
type DeclassifiedRefMut;
// Required method
fn declassify_ref_mut(self) -> Self::DeclassifiedRefMut;
}Expand description
A trait for declassifying mutable references to secret types
Required Associated Types§
Required Methods§
fn declassify_ref_mut(self) -> Self::DeclassifiedRefMut
Implementations on Foreign Types§
Source§impl<'a, T> DeclassifyRefMut for &'a mut T
Available on non-hax only.
impl<'a, T> DeclassifyRefMut for &'a mut T
Available on non-
hax only.