1
0
Fork 0
forked from wry/wry

all: remove unnecessary mem:: prefix

This commit is contained in:
Julian Orth 2024-10-12 14:49:37 +02:00
parent c00ef63afe
commit 1e45a243de
22 changed files with 61 additions and 76 deletions

View file

@ -4,7 +4,7 @@ use {
DbusError, DbusType, DynamicType, Parser,
},
bstr::ByteSlice,
std::{borrow::Cow, mem, rc::Rc},
std::{borrow::Cow, rc::Rc},
uapi::{OwnedFd, Pod},
};
@ -43,7 +43,7 @@ impl<'a> Parser<'a> {
self.align_to(T::ALIGNMENT)?;
match uapi::pod_read_init(&self.buf[self.pos..]) {
Ok(v) => {
self.pos += mem::size_of::<T>();
self.pos += size_of::<T>();
Ok(v)
}
_ => Err(DbusError::UnexpectedEof),
@ -95,13 +95,13 @@ impl<'a> Parser<'a> {
return Err(DbusError::UnexpectedEof);
}
if T::IS_POD {
if len % mem::size_of::<T>() != 0 {
if len % size_of::<T>() != 0 {
return Err(DbusError::PodArrayLength);
}
let slice = unsafe {
std::slice::from_raw_parts(
self.buf[self.pos..].as_ptr() as *const T,
len / mem::size_of::<T>(),
len / size_of::<T>(),
)
};
self.pos += len;