#[repr(C)]pub struct aws_memory_pool {
pub alloc: *mut aws_allocator,
pub stack: aws_array_list,
pub ideal_segment_count: u16,
pub segment_size: usize,
pub data_ptr: *mut c_void,
}
Fields
alloc: *mut aws_allocator
stack: aws_array_list
ideal_segment_count: u16
segment_size: usize
data_ptr: *mut c_void
Trait Implementations
sourceimpl Clone for aws_memory_pool
impl Clone for aws_memory_pool
sourcefn clone(&self) -> aws_memory_pool
fn clone(&self) -> aws_memory_pool
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_memory_pool
impl Debug for aws_memory_pool
sourceimpl Default for aws_memory_pool
impl Default for aws_memory_pool
sourceimpl PartialEq<aws_memory_pool> for aws_memory_pool
impl PartialEq<aws_memory_pool> for aws_memory_pool
sourcefn eq(&self, other: &aws_memory_pool) -> bool
fn eq(&self, other: &aws_memory_pool) -> bool
impl Copy for aws_memory_pool
impl Eq for aws_memory_pool
impl StructuralEq for aws_memory_pool
impl StructuralPartialEq for aws_memory_pool
Auto Trait Implementations
impl RefUnwindSafe for aws_memory_pool
impl !Send for aws_memory_pool
impl !Sync for aws_memory_pool
impl Unpin for aws_memory_pool
impl UnwindSafe for aws_memory_pool
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more