pub struct SmallObjectOptimizationReport {
pub active_mode: &'static str,
pub small_object_threshold_bytes: usize,
pub supported_modes: Vec<&'static str>,
pub unsupported_modes: Vec<&'static str>,
pub capabilities: Vec<&'static str>,
pub failure_modes: Vec<&'static str>,
pub caveats: Vec<&'static str>,
pub entries: Vec<SmallObjectOptimizationEntry>,
}Fields§
§active_mode: &'static str§small_object_threshold_bytes: usize§supported_modes: Vec<&'static str>§unsupported_modes: Vec<&'static str>§capabilities: Vec<&'static str>§failure_modes: Vec<&'static str>§caveats: Vec<&'static str>§entries: Vec<SmallObjectOptimizationEntry>Trait Implementations§
Source§impl Clone for SmallObjectOptimizationReport
impl Clone for SmallObjectOptimizationReport
Source§fn clone(&self) -> SmallObjectOptimizationReport
fn clone(&self) -> SmallObjectOptimizationReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for SmallObjectOptimizationReport
impl PartialEq for SmallObjectOptimizationReport
Source§fn eq(&self, other: &SmallObjectOptimizationReport) -> bool
fn eq(&self, other: &SmallObjectOptimizationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SmallObjectOptimizationReport
impl StructuralPartialEq for SmallObjectOptimizationReport
Auto Trait Implementations§
impl Freeze for SmallObjectOptimizationReport
impl RefUnwindSafe for SmallObjectOptimizationReport
impl Send for SmallObjectOptimizationReport
impl Sync for SmallObjectOptimizationReport
impl Unpin for SmallObjectOptimizationReport
impl UnsafeUnpin for SmallObjectOptimizationReport
impl UnwindSafe for SmallObjectOptimizationReport
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