[][src]Struct libccp::Datapath

pub struct Datapath(_);

Represents datapath functionality. libccp state is freed when this is dropped.

Methods

impl Datapath[src]

pub fn init<T: DatapathOps + 'static>(dp: T) -> Result<Self, Error>[src]

Initialize libccp and pass it an implementation of Datapath functionality.

pub fn recv_msg(&self, msg: &mut [u8]) -> Result<(), Error>[src]

When the datapath receives an IPC message from the congestion control algorithm, call this function to tell libccp about it.

Trait Implementations

impl Drop for Datapath[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]