Rustfmt, add CallFlags::CONSUME.

This commit is contained in:
4lDO2
2025-04-05 16:39:46 +02:00
parent 68aac400cc
commit 080f2003cd
4 changed files with 19 additions and 15 deletions
+4 -1
View File
@@ -383,7 +383,10 @@ impl Deref for RtSigInfo {
impl DerefMut for RtSigInfo {
fn deref_mut(&mut self) -> &mut [u8] {
unsafe {
slice::from_raw_parts_mut(self as *mut RtSigInfo as *mut u8, mem::size_of::<RtSigInfo>())
slice::from_raw_parts_mut(
self as *mut RtSigInfo as *mut u8,
mem::size_of::<RtSigInfo>(),
)
}
}
}