pub trait FsctlResponseContent:
for<'a> BinRead<Args<'a> = ()>
+ for<'b> BinWrite<Args<'b> = ()>
+ Debug {
const FSCTL_CODES: &'static [FsctlCodes];
}Expand description
A trait that helps parsing FSCTL responses by matching the FSCTL code.
Required Associated Constants§
const FSCTL_CODES: &'static [FsctlCodes]
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.