#[non_exhaustive]pub struct TracingAllocator<A> {
pub allocator: A,
}Expand description
An allocator that emits tracing events.
§Usage
use std::alloc::System;
use tracing_allocations::TracingAllocator;
#[global_allocator]
static ALLOCATOR: TracingAllocator<System> = TracingAllocator::new(System);Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.allocator: AImplementations§
Trait Implementations§
Source§impl<A> GlobalAlloc for TracingAllocator<A>where
A: GlobalAlloc,
impl<A> GlobalAlloc for TracingAllocator<A>where
A: GlobalAlloc,
Source§unsafe fn alloc(&self, layout: Layout) -> *mut u8
unsafe fn alloc(&self, layout: Layout) -> *mut u8
Allocates memory as described by the given
layout. Read moreAuto Trait Implementations§
impl<A> Freeze for TracingAllocator<A>where
A: Freeze,
impl<A> RefUnwindSafe for TracingAllocator<A>where
A: RefUnwindSafe,
impl<A> Send for TracingAllocator<A>where
A: Send,
impl<A> Sync for TracingAllocator<A>where
A: Sync,
impl<A> Unpin for TracingAllocator<A>where
A: Unpin,
impl<A> UnwindSafe for TracingAllocator<A>where
A: 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