pub struct ResolvedSpec {
pub ram_mb: u64,
pub cpu_cores: usize,
}Expand description
Resolved machine parameters ready to be consumed by database backends. Database tuning is computed directly from these two values.
Fields§
§ram_mb: u64§cpu_cores: usizeAuto Trait Implementations§
impl Freeze for ResolvedSpec
impl RefUnwindSafe for ResolvedSpec
impl Send for ResolvedSpec
impl Sync for ResolvedSpec
impl Unpin for ResolvedSpec
impl UnsafeUnpin for ResolvedSpec
impl UnwindSafe for ResolvedSpec
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