pub struct VirtIo9pDev<H: Hal, T: Transport> { /* private fields */ }
Available on crate feature v9p only.
Expand description

The VirtIO 9p device driver.

Implementations§

source§

impl<H: Hal, T: Transport> VirtIo9pDev<H, T>

source

pub fn try_new(transport: T) -> DevResult<Self>

Creates a new driver instance and initializes the device, or returns an error if any step fails.

Trait Implementations§

source§

impl<H: Hal, T: Transport> BaseDriverOps for VirtIo9pDev<H, T>

source§

fn device_name(&self) -> &str

The name of the device.
source§

fn device_type(&self) -> DeviceType

The type of the device.
source§

impl<H: Hal, T: Transport> _9pDriverOps for VirtIo9pDev<H, T>

source§

fn init(&self) -> Result<(), u8>

initialize self(e.g. setup TCP connection)
source§

fn send_with_recv( &mut self, inputs: &[u8], outputs: &mut [u8] ) -> Result<u32, u8>

send bytes of inputs as request and receive get answer in outputs
source§

impl<H: Hal, T: Transport> Send for VirtIo9pDev<H, T>

source§

impl<H: Hal, T: Transport> Sync for VirtIo9pDev<H, T>

Auto Trait Implementations§

§

impl<H, T> RefUnwindSafe for VirtIo9pDev<H, T>where H: RefUnwindSafe, T: RefUnwindSafe,

§

impl<H, T> Unpin for VirtIo9pDev<H, T>where H: Unpin, T: Unpin,

§

impl<H, T> UnwindSafe for VirtIo9pDev<H, T>where H: UnwindSafe, T: UnwindSafe,

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