pub struct SuggestedCacheSize(/* private fields */);
Expand description
§Suggested cache size (4 Bytes)
The 4-byte big-endian signed integer at offset 48 is the suggested cache size in pages for the database file. The value is a suggestion only and Sqlite is under no obligation to honor it. The absolute value of the integer is used as the suggested size. The suggested cache size can be set using the default_cache_size pragma.
Trait Implementations§
Source§impl Debug for SuggestedCacheSize
impl Debug for SuggestedCacheSize
Source§impl Default for SuggestedCacheSize
impl Default for SuggestedCacheSize
Source§fn default() -> SuggestedCacheSize
fn default() -> SuggestedCacheSize
Returns the “default value” for a type. Read more
Source§impl Deref for SuggestedCacheSize
impl Deref for SuggestedCacheSize
Auto Trait Implementations§
impl Freeze for SuggestedCacheSize
impl RefUnwindSafe for SuggestedCacheSize
impl Send for SuggestedCacheSize
impl Sync for SuggestedCacheSize
impl Unpin for SuggestedCacheSize
impl UnwindSafe for SuggestedCacheSize
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