Struct dokan::FindStreamData[][src]

pub struct FindStreamData {
    pub size: i64,
    pub name: U16CString,
}

Alternative stream information provided by FileSystemHandler::find_streams.

Fields

size: i64

Size of the stream.

name: U16CString

Name of stream.

The format of this name should be :streamname:$streamtype. See NTFS Streams for more information.

Trait Implementations

impl Clone for FindStreamData[src]

impl Debug for FindStreamData[src]

Auto Trait Implementations

impl RefUnwindSafe for FindStreamData

impl Send for FindStreamData

impl Sync for FindStreamData

impl Unpin for FindStreamData

impl UnwindSafe for FindStreamData

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.