#[repr(C)]
pub struct SYMBOLIC_LINK_REPARSE_BUFFER { pub SubstituteNameOffset: c_ushort, pub SubstituteNameLength: c_ushort, pub PrintNameOffset: c_ushort, pub PrintNameLength: c_ushort, pub Flags: c_ulong, pub PathBuffer: u16, }
🔬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 PathBuffer field!

Fields§

§SubstituteNameOffset: c_ushort
🔬This is a nightly-only experimental API. (windows_c)
§SubstituteNameLength: c_ushort
🔬This is a nightly-only experimental API. (windows_c)
§PrintNameOffset: c_ushort
🔬This is a nightly-only experimental API. (windows_c)
§PrintNameLength: c_ushort
🔬This is a nightly-only experimental API. (windows_c)
§Flags: c_ulong
🔬This is a nightly-only experimental API. (windows_c)
§PathBuffer: u16
🔬This is a nightly-only experimental API. (windows_c)

Auto Trait Implementations§

Blanket Implementations§

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.