[][src]Struct solicit::http::priority::SimplePrioritizer

pub struct SimplePrioritizer<'a, 'b, State> where
    State: SessionState + 'a, 
{ /* fields omitted */ }

An implementation of the DataPrioritizer trait that is based on finding the first stream from the given SessionState instance that can send data and returning this chunk.

For all means and purposes, the order of data chunks that the prioritizer returns is undefined and should not be relied on.

Methods

impl<'a, 'b, State> SimplePrioritizer<'a, 'b, State> where
    State: SessionState + 'a, 
[src]

Creates a new SimplePrioritizer that will use the given state to find stream data that should be sent and use the given buffer to hold the data of the returned chunk.

Trait Implementations

impl<'a, 'b, State> DataPrioritizer for SimplePrioritizer<'a, 'b, State> where
    State: SessionState + 'a, 
[src]

Returns the next DataChunk that should be sent on the HTTP/2 connection. None indicates that currently there was no data that could be sent at that point. Read more

Auto Trait Implementations

impl<'a, 'b, State> Send for SimplePrioritizer<'a, 'b, State> where
    State: Send

impl<'a, 'b, State> Sync for SimplePrioritizer<'a, 'b, State> where
    State: Sync

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more