11 lines
112 KiB
HTML
11 lines
112 KiB
HTML
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `Allocator` trait in crate `brotli`."><title>Allocator in brotli - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Italic-81dc35de.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-MediumItalic-ccf7e434.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2"href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../static.files/rustdoc-ca0dd0c4.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="brotli" data-themes="" data-resource-suffix="" data-rustdoc-version="1.93.1 (01f6ddf75 2026-02-11) (Arch Linux rust 1:1.93.1-1)" data-channel="1.93.1" data-search-js="search-9e2438ea.js" data-stringdex-js="stringdex-a3946164.js" data-settings-js="settings-c38705f0.js" ><script src="../static.files/storage-e2aeef58.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-a410ff4d.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-263c88ec.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-eab170b8.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-044be391.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><rustdoc-topbar><h2><a href="#">Allocator</a></h2></rustdoc-topbar><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../brotli/index.html">brotli</a><span class="version">8.0.2</span></h2></div><div class="sidebar-elems"><section id="rustdoc-toc"><h2 class="location"><a href="#">Allocator</a></h2><h3><a href="#required-associated-types">Required Associated Types</a></h3><ul class="block"><li><a href="#associatedtype.AllocatedMemory" title="AllocatedMemory">AllocatedMemory</a></li></ul><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.alloc_cell" title="alloc_cell">alloc_cell</a></li><li><a href="#tymethod.free_cell" title="free_cell">free_cell</a></li></ul><h3><a href="#implementors">Implementors</a></h3></section><div id="rustdoc-modnav"><h2 class="in-crate"><a href="index.html">In crate brotli</a></h2></div></div></nav><div class="sidebar-resizer" title="Drag to resize sidebar"></div><main><div class="width-limiter"><section id="main-content" class="content"><div class="main-heading"><div class="rustdoc-breadcrumbs"><a href="index.html">brotli</a></div><h1>Trait <span class="trait">Allocator</span> <button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../src/alloc_no_stdlib/stack_allocator.rs.html#6">Source</a> </span></div><pre class="rust item-decl"><code>pub trait Allocator<T> {
|
|
type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a>: <a class="trait" href="../alloc_no_stdlib/allocated_memory/trait.AllocatedSlice.html" title="trait alloc_no_stdlib::allocated_memory::AllocatedSlice">AllocatedSlice</a><T>;
|
|
|
|
// Required methods
|
|
fn <a href="#tymethod.alloc_cell" class="fn">alloc_cell</a>(&mut self, len: <a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.usize.html">usize</a>) -> Self::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a>;
|
|
<span class="item-spacer"></span> fn <a href="#tymethod.free_cell" class="fn">free_cell</a>(&mut self, data: Self::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a>);
|
|
}</code></pre><h2 id="required-associated-types" class="section-header">Required Associated Types<a href="#required-associated-types" class="anchor">§</a></h2><div class="methods"><section id="associatedtype.AllocatedMemory" class="method"><a class="src rightside" href="../src/alloc_no_stdlib/stack_allocator.rs.html#7">Source</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a>: <a class="trait" href="../alloc_no_stdlib/allocated_memory/trait.AllocatedSlice.html" title="trait alloc_no_stdlib::allocated_memory::AllocatedSlice">AllocatedSlice</a><T></h4></section></div><h2 id="required-methods" class="section-header">Required Methods<a href="#required-methods" class="anchor">§</a></h2><div class="methods"><section id="tymethod.alloc_cell" class="method"><a class="src rightside" href="../src/alloc_no_stdlib/stack_allocator.rs.html#8">Source</a><h4 class="code-header">fn <a href="#tymethod.alloc_cell" class="fn">alloc_cell</a>(&mut self, len: <a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.usize.html">usize</a>) -> Self::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section><section id="tymethod.free_cell" class="method"><a class="src rightside" href="../src/alloc_no_stdlib/stack_allocator.rs.html#9">Source</a><h4 class="code-header">fn <a href="#tymethod.free_cell" class="fn">free_cell</a>(&mut self, data: Self::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a>)</h4></section></div><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CT%3E-for-StackAllocator%3C'a,+T,+U%3E" class="impl"><a class="src rightside" href="../src/alloc_no_stdlib/stack_allocator.rs.html#34-35">Source</a><a href="#impl-Allocator%3CT%3E-for-StackAllocator%3C'a,+T,+U%3E" class="anchor">§</a><h3 class="code-header">impl<'a, T, U> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><T> for <a class="struct" href="struct.StackAllocator.html" title="struct brotli::StackAllocator">StackAllocator</a><'a, T, U><div class="where">where
|
|
T: 'a,
|
|
U: <a class="trait" href="../alloc_no_stdlib/allocated_memory/trait.AllocatedSlice.html" title="trait alloc_no_stdlib::allocated_memory::AllocatedSlice">AllocatedSlice</a><&'a mut <a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.slice.html">[T]</a>>,</div></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-1" class="associatedtype trait-impl"><a class="src rightside" href="../src/alloc_no_stdlib/stack_allocator.rs.html#36">Source</a><a href="#associatedtype.AllocatedMemory-1" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <a class="struct" href="struct.AllocatedStackMemory.html" title="struct brotli::AllocatedStackMemory">AllocatedStackMemory</a><'a, T></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CContextType%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#504-509">Source</a><a href="#impl-Allocator%3CContextType%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-2" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#504-509">Source</a><a href="#associatedtype.AllocatedMemory-2" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocContextType as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CCommand%3CSliceOffset%3E%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#474-479">Source</a><a href="#impl-Allocator%3CCommand%3CSliceOffset%3E%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/interface/enum.Command.html" title="enum brotli::enc::interface::Command">Command</a><<a class="struct" href="enc/interface/struct.SliceOffset.html" title="struct brotli::enc::interface::SliceOffset">SliceOffset</a>>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-3" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#474-479">Source</a><a href="#associatedtype.AllocatedMemory-3" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocStaticCommand as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/interface/enum.Command.html" title="enum brotli::enc::interface::Command">Command</a><<a class="struct" href="enc/interface/struct.SliceOffset.html" title="struct brotli::enc::interface::SliceOffset">SliceOffset</a>>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3Cf32%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#470">Source</a><a href="#impl-Allocator%3Cf32%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.f32.html">f32</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-4" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#470">Source</a><a href="#associatedtype.AllocatedMemory-4" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocFloatX as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.f32.html">f32</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3Ci32%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#461">Source</a><a href="#impl-Allocator%3Ci32%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-5" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#461">Source</a><a href="#associatedtype.AllocatedMemory-5" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocI32 as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3Cu8%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#458">Source</a><a href="#impl-Allocator%3Cu8%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-6" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#458">Source</a><a href="#associatedtype.AllocatedMemory-6" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocU8 as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3Cu16%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#459">Source</a><a href="#impl-Allocator%3Cu16%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-7" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#459">Source</a><a href="#associatedtype.AllocatedMemory-7" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocU16 as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3Cu32%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#462">Source</a><a href="#impl-Allocator%3Cu32%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-8" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#462">Source</a><a href="#associatedtype.AllocatedMemory-8" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocU32 as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3Cu64%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#463">Source</a><a href="#impl-Allocator%3Cu64%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-9" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#463">Source</a><a href="#associatedtype.AllocatedMemory-9" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocU64 as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CZopfliNode%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#516-521">Source</a><a href="#impl-Allocator%3CZopfliNode%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-10" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#516-521">Source</a><a href="#associatedtype.AllocatedMemory-10" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocZopfliNode as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CHistogramPair%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#498-503">Source</a><a href="#impl-Allocator%3CHistogramPair%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-11" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#498-503">Source</a><a href="#associatedtype.AllocatedMemory-11" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocHistogramPair as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CCommand%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#464-469">Source</a><a href="#impl-Allocator%3CCommand%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-12" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#464-469">Source</a><a href="#associatedtype.AllocatedMemory-12" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocCommand as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CHuffmanTree%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#510-515">Source</a><a href="#impl-Allocator%3CHuffmanTree%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-13" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#510-515">Source</a><a href="#associatedtype.AllocatedMemory-13" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocHuffmanTree as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CHistogramCommand%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#486-491">Source</a><a href="#impl-Allocator%3CHistogramCommand%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-14" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#486-491">Source</a><a href="#associatedtype.AllocatedMemory-14" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocHistogramCommand as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CHistogramDistance%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#492-497">Source</a><a href="#impl-Allocator%3CHistogramDistance%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-15" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#492-497">Source</a><a href="#associatedtype.AllocatedMemory-15" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocHistogramDistance as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CHistogramLiteral%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#480-485">Source</a><a href="#impl-Allocator%3CHistogramLiteral%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-16" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#480-485">Source</a><a href="#associatedtype.AllocatedMemory-16" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocHistogramLiteral as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CPDF%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#473">Source</a><a href="#impl-Allocator%3CPDF%3E-for-CombiningAllocator%3CAllocU8,+AllocU16,+AllocI32,+AllocU32,+AllocU64,+AllocCommand,+AllocFloatX,+AllocV8,+AllocS16,+AllocPDF,+AllocStaticCommand,+AllocHistogramLiteral,+AllocHistogramCommand,+AllocHistogramDistance,+AllocHistogramPair,+AllocContextType,+AllocHuffmanTree,+AllocZopfliNode%3E" class="anchor">§</a><h3 class="code-header">impl<AllocU8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>>, AllocU16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u16.html">u16</a>>, AllocI32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.i32.html">i32</a>>, AllocU32: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u32.html">u32</a>>, AllocU64: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u64.html">u64</a>>, AllocCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/command/struct.Command.html" title="struct brotli::enc::command::Command">Command</a>>, AllocFloatX: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/util/type.floatX.html" title="type brotli::enc::util::floatX">floatX</a>>, AllocV8: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.v8.html" title="type brotli::enc::v8">v8</a>>, AllocS16: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/type.s16.html" title="type brotli::enc::s16">s16</a>>, AllocPDF: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>, AllocStaticCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="type" href="enc/interface/type.StaticCommand.html" title="type brotli::enc::interface::StaticCommand">StaticCommand</a>>, AllocHistogramLiteral: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramLiteral.html" title="struct brotli::enc::histogram::HistogramLiteral">HistogramLiteral</a>>, AllocHistogramCommand: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramCommand.html" title="struct brotli::enc::histogram::HistogramCommand">HistogramCommand</a>>, AllocHistogramDistance: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/histogram/struct.HistogramDistance.html" title="struct brotli::enc::histogram::HistogramDistance">HistogramDistance</a>>, AllocHistogramPair: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/cluster/struct.HistogramPair.html" title="struct brotli::enc::cluster::HistogramPair">HistogramPair</a>>, AllocContextType: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="enum" href="enc/histogram/enum.ContextType.html" title="enum brotli::enc::histogram::ContextType">ContextType</a>>, AllocHuffmanTree: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/entropy_encode/struct.HuffmanTree.html" title="struct brotli::enc::entropy_encode::HuffmanTree">HuffmanTree</a>>, AllocZopfliNode: <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/backward_references/hash_to_binary_tree/struct.ZopfliNode.html" title="struct brotli::enc::backward_references::hash_to_binary_tree::ZopfliNode">ZopfliNode</a>>> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>> for <a class="struct" href="enc/combined_alloc/struct.CombiningAllocator.html" title="struct brotli::enc::combined_alloc::CombiningAllocator">CombiningAllocator</a><AllocU8, AllocU16, AllocI32, AllocU32, AllocU64, AllocCommand, AllocFloatX, AllocV8, AllocS16, AllocPDF, AllocStaticCommand, AllocHistogramLiteral, AllocHistogramCommand, AllocHistogramDistance, AllocHistogramPair, AllocContextType, AllocHuffmanTree, AllocZopfliNode></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-17" class="associatedtype trait-impl"><a class="src rightside" href="../src/brotli/enc/combined_alloc.rs.html#473">Source</a><a href="#associatedtype.AllocatedMemory-17" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <AllocPDF as <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><<a class="struct" href="enc/pdf/struct.PDF.html" title="struct brotli::enc::pdf::PDF">PDF</a>>>::<a class="associatedtype" href="trait.Allocator.html#associatedtype.AllocatedMemory" title="type brotli::Allocator::AllocatedMemory">AllocatedMemory</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CT%3E-for-StandardAlloc" class="impl"><a class="src rightside" href="../src/alloc_stdlib/std_alloc.rs.html#6">Source</a><a href="#impl-Allocator%3CT%3E-for-StandardAlloc" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><T> for <a class="struct" href="enc/struct.StandardAlloc.html" title="struct brotli::enc::StandardAlloc">StandardAlloc</a><div class="where">where
|
|
T: <a class="trait" href="https://doc.rust-lang.org/1.93.1/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="https://doc.rust-lang.org/1.93.1/core/default/trait.Default.html" title="trait core::default::Default">Default</a>,</div></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-18" class="associatedtype trait-impl"><a class="src rightside" href="../src/alloc_stdlib/std_alloc.rs.html#7">Source</a><a href="#associatedtype.AllocatedMemory-18" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <a class="struct" href="../alloc_stdlib/heap_alloc/struct.WrapBox.html" title="struct alloc_stdlib::heap_alloc::WrapBox">WrapBox</a><T></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Allocator%3CT%3E-for-HeapAlloc%3CT%3E" class="impl"><a class="src rightside" href="../src/alloc_stdlib/heap_alloc.rs.html#86">Source</a><a href="#impl-Allocator%3CT%3E-for-HeapAlloc%3CT%3E" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="trait.Allocator.html" title="trait brotli::Allocator">Allocator</a><T> for <a class="struct" href="struct.HeapAlloc.html" title="struct brotli::HeapAlloc">HeapAlloc</a><T><div class="where">where
|
|
T: <a class="trait" href="https://doc.rust-lang.org/1.93.1/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</div></h3></section></summary><div class="impl-items"><section id="associatedtype.AllocatedMemory-19" class="associatedtype trait-impl"><a class="src rightside" href="../src/alloc_stdlib/heap_alloc.rs.html#87">Source</a><a href="#associatedtype.AllocatedMemory-19" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.AllocatedMemory" class="associatedtype">AllocatedMemory</a> = <a class="struct" href="../alloc_stdlib/heap_alloc/struct.WrapBox.html" title="struct alloc_stdlib::heap_alloc::WrapBox">WrapBox</a><T></h4></section></div></details></div><script src="../trait.impl/alloc_no_stdlib/stack_allocator/trait.Allocator.js" data-ignore-extern-crates="alloc_no_stdlib,alloc_stdlib" async></script></section></div></main></body></html> |