#[repr(C)]pub struct REPARSE_DATA_BUFFER {
pub ReparseTag: c_uint,
pub ReparseDataLength: c_ushort,
pub Reserved: c_ushort,
pub rest: (),
}
🔬This is a nightly-only experimental API. (
windows_c
)Expand description
NB: Use carefully! In general using this as a reference is likely to get the
provenance wrong for the rest
field!
Fields§
§ReparseTag: c_uint
🔬This is a nightly-only experimental API. (
§windows_c
)ReparseDataLength: c_ushort
🔬This is a nightly-only experimental API. (
§windows_c
)Reserved: c_ushort
🔬This is a nightly-only experimental API. (
§windows_c
)rest: ()
🔬This is a nightly-only experimental API. (
windows_c
)Auto Trait Implementations§
impl RefUnwindSafe for REPARSE_DATA_BUFFER
impl Send for REPARSE_DATA_BUFFER
impl Sync for REPARSE_DATA_BUFFER
impl Unpin for REPARSE_DATA_BUFFER
impl UnwindSafe for REPARSE_DATA_BUFFER
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more