logo
pub struct ScratchTracker<T> { /* private fields */ }
Expand description

A passthrough scratch space allocator that tracks scratch space usage.

Implementations

Creates a new scratch tracker from the given inner scratch space.

Returns the maximum number of bytes that were concurrently allocated during serialization.

Returns the maximum number of concurrent allocations during serialization.

Returns the maximum alignment of scratch space requested during serialization.

Returns the minimum buffer size required to serialize the same data.

This calculation takes into account packing efficiency for slab allocated scratch space. It is not exact, and has an error bound of max_allocations * (max_alignment - 1) bytes. This should be suitably small for most use cases.

Returns the maximum error term for the minimum buffer size calculation.

Trait Implementations

Formats the value using the given formatter. Read more

The error produced by any failing methods.

Converts to this type from the input type.

Allocates scratch space of the requested size. Read more

Deallocates previously allocated scratch space. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

The archived version of the pointer metadata for this type.

Converts some archived metadata to the pointer metadata for itself.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Deserializes using the given deserializer

Converts to this type from the input type.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Gets the layout of the type.

The type for metadata in pointers and references to Self.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.