pub struct Global;
Expand description

The global memory allocator.

Trait Implementations

Attempts to allocate a block of memory. Read more
Deallocates the memory referenced by ptr. Read more
Behaves like allocate, but also ensures that the returned memory is zero-initialized. Read more
Attempts to extend the memory block. Read more
Behaves like grow, but also ensures that the new contents are set to zero before being returned. Read more
Attempts to shrink the memory block. Read more
Behaves like grow but returns Err if the memory block cannot be grown in-place. Read more
Behaves like grow_zeroed but returns Err if the memory block cannot be grown in-place. Read more
Behaves like shrink but returns Err if the memory block cannot be shrunk in-place. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type for metadata in pointers and references to Self.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.