Skip to main content

vlib_buffer_pool_t

Struct vlib_buffer_pool_t 

Source
#[repr(C, align(64))]
pub struct vlib_buffer_pool_t {
Show 17 fields pub cacheline0: __IncompleteArrayField<u8_>, pub start: uword, pub size: uword, pub log2_page_size: u8_, pub index: u8_, pub numa_node: u8_, pub physmem_map_index: u32_, pub data_size: u32_, pub alloc_size: u32_, pub n_buffers: u32_, pub n_avail: u32_, pub buffers: *mut u32_, pub name: *mut u8_, pub lock: clib_spinlock_t, pub threads: *mut vlib_buffer_pool_thread_t, pub __bindgen_padding_0: [u64; 7], pub buffer_template: vlib_buffer_template_t,
}

Fields§

§cacheline0: __IncompleteArrayField<u8_>§start: uword§size: uword§log2_page_size: u8_§index: u8_§numa_node: u8_§physmem_map_index: u32_§data_size: u32_§alloc_size: u32_§n_buffers: u32_§n_avail: u32_§buffers: *mut u32_§name: *mut u8_§lock: clib_spinlock_t§threads: *mut vlib_buffer_pool_thread_t§__bindgen_padding_0: [u64; 7]§buffer_template: vlib_buffer_template_t

Trait Implementations§

Source§

impl Default for vlib_buffer_pool_t

Source§

fn default() -> Self

Returns the “default value” for a type. 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 = 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 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.