1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 13:37:48 +00:00

uucore/refactor ~ fix cargo clippy complaints (*allow* type_complexity)

This commit is contained in:
Roy Ivy III 2020-11-07 20:15:02 -06:00
parent 66dfd73ffe
commit 3dc9f76c7f

View file

@ -22,6 +22,7 @@ pub struct PlatformZeroCopyWriter {
raw_obj: RawObject,
read_pipe: RawFd,
write_pipe: RawFd,
#[allow(clippy::type_complexity)]
write_fn: fn(&mut PlatformZeroCopyWriter, &[IoVec<&[u8]>], usize) -> io::Result<usize>,
}