pub struct LinuxIntelRdtBuilder { /* private fields */ }
Expand description
Builder for LinuxIntelRdt
.
Implementations§
Source§impl LinuxIntelRdtBuilder
impl LinuxIntelRdtBuilder
Sourcepub fn clos_id<VALUE: Into<Option<String>>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn clos_id<VALUE: Into<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self
The identity for RDT Class of Service
Sourcepub fn l3_cache_schema<VALUE: Into<Option<String>>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn l3_cache_schema<VALUE: Into<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self
The schema for L3 cache id and capacity bitmask (CBM)
Format: “L3:<cache_id0>=
Sourcepub fn mem_bw_schema<VALUE: Into<Option<String>>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn mem_bw_schema<VALUE: Into<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self
The schema of memory bandwidth per L3 cache id Format: “MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;…” The unit of memory bandwidth is specified in “percentages” by Default, Clone, and in “MBps” if MBA Software Controller is enabled.
Trait Implementations§
Source§impl Clone for LinuxIntelRdtBuilder
impl Clone for LinuxIntelRdtBuilder
Source§fn clone(&self) -> LinuxIntelRdtBuilder
fn clone(&self) -> LinuxIntelRdtBuilder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for LinuxIntelRdtBuilder
impl Default for LinuxIntelRdtBuilder
Source§fn default() -> LinuxIntelRdtBuilder
fn default() -> LinuxIntelRdtBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LinuxIntelRdtBuilder
impl RefUnwindSafe for LinuxIntelRdtBuilder
impl Send for LinuxIntelRdtBuilder
impl Sync for LinuxIntelRdtBuilder
impl Unpin for LinuxIntelRdtBuilder
impl UnwindSafe for LinuxIntelRdtBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more