[][src]Struct brotli::enc::backward_references::hq::ZopfliCostModel

pub struct ZopfliCostModel<AllocF: Allocator<floatX>> {
    pub cost_cmd_: [floatX; 704],
    pub cost_dist_: AllocF::AllocatedMemory,
    pub distance_histogram_size: u32,
    pub literal_costs_: AllocF::AllocatedMemory,
    pub min_cost_cmd_: floatX,
    pub num_bytes_: usize,
}

Fields

cost_cmd_: [floatX; 704]cost_dist_: AllocF::AllocatedMemorydistance_histogram_size: u32literal_costs_: AllocF::AllocatedMemorymin_cost_cmd_: floatXnum_bytes_: usize

Auto Trait Implementations

impl<AllocF> RefUnwindSafe for ZopfliCostModel<AllocF> where
    <AllocF as Allocator<f32>>::AllocatedMemory: RefUnwindSafe

impl<AllocF> Send for ZopfliCostModel<AllocF> where
    <AllocF as Allocator<f32>>::AllocatedMemory: Send

impl<AllocF> Sync for ZopfliCostModel<AllocF> where
    <AllocF as Allocator<f32>>::AllocatedMemory: Sync

impl<AllocF> Unpin for ZopfliCostModel<AllocF> where
    <AllocF as Allocator<f32>>::AllocatedMemory: Unpin

impl<AllocF> UnwindSafe for ZopfliCostModel<AllocF> where
    <AllocF as Allocator<f32>>::AllocatedMemory: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.