Struct ProcThreadAttributeList
pub struct ProcThreadAttributeList<'a> { pub(in ::os::windows::process) attribute_list: Box<[MaybeUninit<u8>]>, pub(in ::os::windows::process) _lifetime_marker: PhantomData<&'a ()> }
A wrapper around windows [ProcThreadAttributeList][1].
Fields
attribute_list: Box<[MaybeUninit<u8>]>_lifetime_marker: PhantomData<&'a ()>
Implementations
impl<'a> ProcThreadAttributeList<'a>
fn build() -> ProcThreadAttributeListBuilder<'a>Creates a new builder for constructing a
ProcThreadAttributeList.fn as_ptr(&self) -> *const MaybeUninit<u8>Returns a pointer to the underling attribute list.
Trait Implementations
impl<'a> Debug for ProcThreadAttributeList<'a>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<'a> Drop for ProcThreadAttributeList<'a>
fn drop(&mut self)Deletes the attribute list.
This method calls [
DeleteProcThreadAttributeList][1] to delete the underlying attribute list.
Auto Trait Implementations
impl<'a> Freeze for ProcThreadAttributeList<'a>
impl<'a> RefUnwindSafe for ProcThreadAttributeList<'a>
impl<'a> Send for ProcThreadAttributeList<'a>
impl<'a> Sync for ProcThreadAttributeList<'a>
impl<'a> Unpin for ProcThreadAttributeList<'a>
impl<'a> UnsafeUnpin for ProcThreadAttributeList<'a>
impl<'a> UnwindSafe for ProcThreadAttributeList<'a>
Blanket Implementations
impl<T> Any for ProcThreadAttributeList<'a>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for ProcThreadAttributeList<'a>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for ProcThreadAttributeList<'a>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for ProcThreadAttributeList<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> SizeHint for ProcThreadAttributeList<'a>
where
T: ?Sized,
fn lower_bound(&self) -> usizefn upper_bound(&self) -> Option<usize>
impl<T> SizedTypeProperties for ProcThreadAttributeList<'a>
impl<T, U> Into<U> for ProcThreadAttributeList<'a>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for ProcThreadAttributeList<'a>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for ProcThreadAttributeList<'a>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>