embassy-net-tuntap

Crates

git

Versions

default

Flavors

Skip to main content

TunTapDevice

Struct TunTapDevice 

Source
pub struct TunTapDevice { /* private fields */ }
Expand description

A TUN/TAP device, wrapped in an async interface.

Implementations§

Source§

impl TunTapDevice

Source

pub fn new(name: &str) -> Result<TunTapDevice>

Create a new TUN/TAP device.

Source

pub fn set_hardware_address(&mut self, hardware_address: [u8; 6])

Sets the MAC address of the TAP device.

Note that this can not be completely random; for example, choosing a multicast address (least significant bit of the first octet is 1) would cause xarxa to crash.

Trait Implementations§

Source§

impl Driver for TunTapDevice

Source§

fn capabilities(&self) -> Capabilities

Get a description of the device’s capabilities.
Source§

fn hardware_address(&self) -> HardwareAddress

Get the device’s hardware address. Read more
Get the link state. Read more
Source§

fn register_waker(&mut self, waker: &Waker) -> Result<(), NotSupported>

Register a waker. Read more
Source§

fn receive(&mut self) -> Option<PacketBuf>

Poll for a received frame. Read more
Source§

fn can_transmit(&mut self) -> bool

Whether the device can transmit one frame right now. Read more
Source§

fn transmit(&mut self, buf: PacketBuf) -> Result<(), PacketBuf>

Queue a frame for transmission, transferring ownership of the buffer to the driver. Read more
§

fn set_multicast_filter(&mut self, addrs: &[[u8; 6]])

Set the device’s multicast hardware address filter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where U: Into<T>,

Source§

type Error = !

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 T
where U: TryFrom<T>,

Source§

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.