Function allocator [src]
Prototype
pub fn allocator(self: *FailingAllocator) mem.Allocator
Parameters
self: *FailingAllocator
Source
pub fn allocator(self: *FailingAllocator) mem.Allocator {
return .{
.ptr = self,
.vtable = &.{
.alloc = alloc,
.resize = resize,
.remap = remap,
.free = free,
},
};
}