pub struct CommandBuilder { /* private fields */ }
Expand description

Struct that makes it easier to pass the variety of arguments that are required for different commands

Implementations§

source§

impl CommandBuilder

source

pub fn new(opcode: CommandOpcode) -> CommandBuilder

source

pub fn opmod(self, opmod: u16) -> CommandBuilder

source

pub fn allocated_pages( self, allocated_pages: Vec<PhysicalAddress> ) -> CommandBuilder

source

pub fn uar(self, uar: u32) -> CommandBuilder

source

pub fn queue_size(self, size: u32) -> CommandBuilder

source

pub fn eqn(self, eqn: Eqn) -> CommandBuilder

source

pub fn db_page(self, db_page: PhysicalAddress) -> CommandBuilder

source

pub fn td(self, td: Td) -> CommandBuilder

source

pub fn cqn(self, cqn: Cqn) -> CommandBuilder

source

pub fn tisn(self, tisn: Tisn) -> CommandBuilder

source

pub fn pd(self, pd: Pd) -> CommandBuilder

source

pub fn sqn(self, sqn: Sqn) -> CommandBuilder

source

pub fn collapsed_cq(self) -> CommandBuilder

source

pub fn rqn(self, rqn: Rqn) -> CommandBuilder

source

pub fn mtu(self, mtu: u16) -> CommandBuilder

source

pub fn flow_table_id(self, id: FtId) -> CommandBuilder

source

pub fn flow_group_id(self, id: FgId) -> CommandBuilder

source

pub fn tirn(self, tirn: Tirn) -> CommandBuilder

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