#[repr(C)]pub struct aws_cache {
pub allocator: *mut aws_allocator,
pub vtable: *const aws_cache_vtable,
pub table: aws_linked_hash_table,
pub max_items: usize,
pub impl_: *mut c_void,
}
Expand description
Base stucture for caches, used the linked hash table implementation.
Fields
allocator: *mut aws_allocator
vtable: *const aws_cache_vtable
table: aws_linked_hash_table
max_items: usize
impl_: *mut c_void
Trait Implementations
impl Copy for aws_cache
impl Eq for aws_cache
impl StructuralEq for aws_cache
impl StructuralPartialEq for aws_cache
Auto Trait Implementations
impl RefUnwindSafe for aws_cache
impl !Send for aws_cache
impl !Sync for aws_cache
impl Unpin for aws_cache
impl UnwindSafe for aws_cache
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