[][src]Trait unsafe_io::IntoUnsafeFile

pub trait IntoUnsafeFile {
    pub fn into_unsafe_file(self) -> UnsafeFile;

    pub fn into_file(self) -> File
    where
        Self: Sized
, { ... } }

A trait for types which can be converted into unsafe files.

Required methods

pub fn into_unsafe_file(self) -> UnsafeFile[src]

Convert self into an unsafe file.

Loading content...

Provided methods

pub fn into_file(self) -> File where
    Self: Sized
[src]

Utility for converting self into a File.

Loading content...

Implementors

impl<T: IntoRawFd> IntoUnsafeFile for T[src]

Loading content...