Enum sandbox_ipc::SendableDataSource [] [src]

pub enum SendableDataSource {
    File(File),
    Memory(SharedMem),
    Inline(Vec<u8>),
}

Variants

Methods

impl SendableDataSource
[src]

Trait Implementations

impl Debug for SendableDataSource
[src]

[src]

Formats the value using the given formatter.

impl From<Vec<u8>> for SendableDataSource
[src]

[src]

Performs the conversion.

impl From<File> for SendableDataSource
[src]

[src]

Performs the conversion.