pub struct DiskConfig<'a> {
    disk: &'a DiskOption,
    device_tube: Cell<Option<Tube>>,
}
Expand description

A one-shot configuration structure for implementing VirtioDeviceBuilder. We cannot do it on DiskOption directly because disk devices can be passed an optional control tube.

Fields

disk: &'a DiskOption

Options for disk creation.

device_tube: Cell<Option<Tube>>

Optional control tube for the device. Placed behind a Cell so it can be taken from a non-mutable reference.

Implementations

Trait Implementations

Base name of the device, as it will appear in logs.

Create a regular virtio device from the configuration and protection_type setting.

Create a device suitable for being run as a vhost-user instance. Read more

Create a jail that is suitable to run a device. Read more

Helper method to return a VirtioDeviceStub filled using create_virtio_device and create_jail. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.