struct VsockBackend {
    queues: [QueueConfig; 3],
    vmm_maps: Option<Vec<MappingInfo>>,
    mem: Option<GuestMemory>,
    handle: Vsock,
    cid: u64,
    protocol_features: VhostUserProtocolFeatures,
}

Fields§

§queues: [QueueConfig; 3]§vmm_maps: Option<Vec<MappingInfo>>§mem: Option<GuestMemory>§handle: Vsock§cid: u64§protocol_features: VhostUserProtocolFeatures

Trait Implementations§

source§

impl Backend for VsockBackend

source§

fn set_owner(&mut self) -> Result<()>

source§

fn reset_owner(&mut self) -> Result<()>

source§

fn get_features(&mut self) -> Result<u64>

source§

fn set_features(&mut self, features: u64) -> Result<()>

source§

fn get_protocol_features(&mut self) -> Result<VhostUserProtocolFeatures>

source§

fn set_protocol_features(&mut self, features: u64) -> Result<()>

source§

fn set_mem_table( &mut self, contexts: &[VhostUserMemoryRegion], files: Vec<File> ) -> Result<()>

source§

fn get_queue_num(&mut self) -> Result<u64>

source§

fn set_vring_num(&mut self, index: u32, num: u32) -> Result<()>

source§

fn set_vring_addr( &mut self, index: u32, flags: VhostUserVringAddrFlags, descriptor: u64, used: u64, available: u64, log: u64 ) -> Result<()>

source§

fn set_vring_base(&mut self, index: u32, base: u32) -> Result<()>

source§

fn get_vring_base(&mut self, index: u32) -> Result<VhostUserVringState>

source§

fn set_vring_kick(&mut self, index: u8, fd: Option<File>) -> Result<()>

source§

fn set_vring_call(&mut self, index: u8, fd: Option<File>) -> Result<()>

source§

fn set_vring_err(&mut self, index: u8, fd: Option<File>) -> Result<()>

source§

fn set_vring_enable(&mut self, index: u32, enable: bool) -> Result<()>

source§

fn get_config( &mut self, offset: u32, size: u32, _flags: VhostUserConfigFlags ) -> Result<Vec<u8>>

source§

fn set_config( &mut self, _offset: u32, _buf: &[u8], _flags: VhostUserConfigFlags ) -> Result<()>

source§

fn set_backend_req_fd(&mut self, _vu_req: Connection<BackendReq>)

source§

fn get_inflight_fd( &mut self, _inflight: &VhostUserInflight ) -> Result<(VhostUserInflight, File)>

source§

fn set_inflight_fd( &mut self, _inflight: &VhostUserInflight, _file: File ) -> Result<()>

source§

fn get_max_mem_slots(&mut self) -> Result<u64>

source§

fn add_mem_region( &mut self, _region: &VhostUserSingleMemoryRegion, _fd: File ) -> Result<()>

source§

fn remove_mem_region( &mut self, _region: &VhostUserSingleMemoryRegion ) -> Result<()>

source§

fn get_shared_memory_regions(&mut self) -> Result<Vec<VhostSharedMemoryRegion>>

source§

fn sleep(&mut self) -> Result<()>

Request the device to sleep by stopping their workers. This should NOT be called if the device is already asleep.
source§

fn wake(&mut self) -> Result<()>

Request the device to wake up by starting up their workers. This should NOT be called if the device is already awake.
source§

fn snapshot(&mut self) -> Result<Vec<u8>>

source§

fn restore(&mut self, _data_bytes: &[u8], _queue_evts: Vec<File>) -> Result<()>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for Twhere T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>

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.
§

fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>

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

fn as_any(&self) -> &(dyn Any + 'static)

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

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

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

impl<T> DowncastSync for Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T, Global>) -> Arc<dyn Any + Sync + Send, Global>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V