Struct dokan::TokenHandle[][src]

pub struct TokenHandle { /* fields omitted */ }

A simple wrapper struct that holds the Win32 handle returned by OperationInfo::requester_token.

It calls CloseHandle automatically when dropped.

Trait Implementations

impl AsRawHandle for TokenHandle[src]

impl Debug for TokenHandle[src]

impl Drop for TokenHandle[src]

impl Eq for TokenHandle[src]

impl FromRawHandle for TokenHandle[src]

impl IntoRawHandle for TokenHandle[src]

impl PartialEq<TokenHandle> for TokenHandle[src]

impl StructuralEq for TokenHandle[src]

impl StructuralPartialEq for TokenHandle[src]

Auto Trait Implementations

impl RefUnwindSafe for TokenHandle

impl !Send for TokenHandle

impl !Sync for TokenHandle

impl Unpin for TokenHandle

impl UnwindSafe for TokenHandle

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.