pub struct Pools(/* private fields */);Implementations§
Source§impl Pools
impl Pools
pub fn new(max_pool_size: usize) -> Self
pub fn bool_pool(&self) -> &StdPoolAllocator<BoolContainer>
pub fn string_pool(&self) -> &StdPoolAllocator<Utf8Container>
pub fn blob_pool(&self) -> &StdPoolAllocator<BlobContainer>
pub fn row_number_pool(&self) -> &StdPoolAllocator<RowNumberContainer>
pub fn undefined_pool(&self) -> &StdPoolAllocator<UndefinedContainer>
pub fn i8_pool(&self) -> &StdPoolAllocator<NumberContainer<i8>>
pub fn i16_pool(&self) -> &StdPoolAllocator<NumberContainer<i16>>
pub fn i32_pool(&self) -> &StdPoolAllocator<NumberContainer<i32>>
pub fn i64_pool(&self) -> &StdPoolAllocator<NumberContainer<i64>>
pub fn i128_pool(&self) -> &StdPoolAllocator<NumberContainer<i128>>
pub fn u8_pool(&self) -> &StdPoolAllocator<NumberContainer<u8>>
pub fn u16_pool(&self) -> &StdPoolAllocator<NumberContainer<u16>>
pub fn u32_pool(&self) -> &StdPoolAllocator<NumberContainer<u32>>
pub fn u64_pool(&self) -> &StdPoolAllocator<NumberContainer<u64>>
pub fn u128_pool(&self) -> &StdPoolAllocator<NumberContainer<u128>>
pub fn f32_pool(&self) -> &StdPoolAllocator<NumberContainer<f32>>
pub fn f64_pool(&self) -> &StdPoolAllocator<NumberContainer<f64>>
pub fn date_pool(&self) -> &StdPoolAllocator<TemporalContainer<Date>>
pub fn datetime_pool(&self) -> &StdPoolAllocator<TemporalContainer<DateTime>>
pub fn time_pool(&self) -> &StdPoolAllocator<TemporalContainer<Time>>
pub fn duration_pool(&self) -> &StdPoolAllocator<TemporalContainer<Duration>>
pub fn uuid4_pool(&self) -> &StdPoolAllocator<UuidContainer<Uuid4>>
pub fn uuid7_pool(&self) -> &StdPoolAllocator<UuidContainer<Uuid7>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pools
impl RefUnwindSafe for Pools
impl !Send for Pools
impl !Sync for Pools
impl Unpin for Pools
impl UnwindSafe for Pools
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