Struct sandbox_ipc::io::SendableFile[][src]

pub struct SendableFile<B = File>(pub B)
where
    B: Borrow<File>
;

Wraps a normal std::fs::File so it may be transmitted to other processes.

Trait Implementations

impl<B: Debug> Debug for SendableFile<B> where
    B: Borrow<File>, 
[src]

Formats the value using the given formatter. Read more

impl From<File> for SendableFile
[src]

Performs the conversion.

impl From<SendableFile> for File
[src]

Performs the conversion.

impl<B> Serialize for SendableFile<B> where
    B: Borrow<File>, 
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for SendableFile
[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl<B> Send for SendableFile<B> where
    B: Send

impl<B> Sync for SendableFile<B> where
    B: Sync