pub struct Geometry<R> {
pub size: Option<R>,
pub growth_step: Option<isize>,
pub shrink_threshold: Option<isize>,
pub page_size: Option<PageSize>,
}Expand description
Represents the geometry settings for the database environment
Fields§
§size: Option<R>The size range in bytes.
growth_step: Option<isize>The growth step in bytes.
shrink_threshold: Option<isize>The shrink threshold in bytes.
page_size: Option<PageSize>The page size.
Trait Implementations§
impl<R: Eq> Eq for Geometry<R>
impl<R> StructuralPartialEq for Geometry<R>
Auto Trait Implementations§
impl<R> Freeze for Geometry<R>where
R: Freeze,
impl<R> RefUnwindSafe for Geometry<R>where
R: RefUnwindSafe,
impl<R> Send for Geometry<R>where
R: Send,
impl<R> Sync for Geometry<R>where
R: Sync,
impl<R> Unpin for Geometry<R>where
R: Unpin,
impl<R> UnwindSafe for Geometry<R>where
R: UnwindSafe,
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