Trait streaming_algorithms::New[][src]

pub trait New {
    type Config: Clone;
    fn new(config: &Self::Config) -> Self;
}

New instances are instantiable given a specified input of <Self as New>::Config.

Associated Types

The type of data required to instantiate a new Self.

Required Methods

Instantiate a new Self with the given <Self as New>::Config.

Implementations on Foreign Types

impl New for u8
[src]

impl New for u16
[src]

impl New for u32
[src]

impl New for u64
[src]

impl New for usize
[src]

Implementors