pub trait IoctlRequestContent {
// Required method
fn get_bin_size(&self) -> u32;
}Expand description
A trait that helps calculating the size of the buffer for IOCTL requests.
Required Methods§
Sourcefn get_bin_size(&self) -> u32
fn get_bin_size(&self) -> u32
Returns the size of the buffer for IOCTL requests – the size of the ENCODED data, in bytes.